Skip network tuning on CI machines
This commit is contained in:
parent
57e928d1d0
commit
c5ceb15e02
|
@ -143,6 +143,9 @@ configure_metrics() {
|
||||||
configure_metrics
|
configure_metrics
|
||||||
|
|
||||||
tune_networking() {
|
tune_networking() {
|
||||||
|
# Skip in CI
|
||||||
|
[[ -z $CI ]] || return 0
|
||||||
|
|
||||||
# Reference: https://medium.com/@CameronSparr/increase-os-udp-buffers-to-improve-performance-51d167bb1360
|
# Reference: https://medium.com/@CameronSparr/increase-os-udp-buffers-to-improve-performance-51d167bb1360
|
||||||
if [[ $(uname) = Linux ]]; then
|
if [[ $(uname) = Linux ]]; then
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in New Issue