ci: reduce UDP perf test bitrate (#10153)

Forcing 500MBit/s through a relayed connection in CI makes the
user-space relay fall-over and drop control messages, leading to ICE
timeouts of the connection.
This commit is contained in:
Thomas Eizinger
2025-08-06 19:11:57 +10:00
committed by GitHub
parent f27683760a
commit b5e3ee8065
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ install_iptables_drop_rules
docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--time 30 \
--udp \
--bandwidth 500M \
--bandwidth 450M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"

View File

@@ -9,7 +9,7 @@ docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--time 30 \
--reverse \
--udp \
--bandwidth 500M \
--bandwidth 450M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"