Skip to content

Commit

Permalink
qns: increase active CIDs limit for interop
Browse files Browse the repository at this point in the history
Currently the max active CIDs limit controls both the number of active
CIDs as well as the number of active paths, so while during rebinding
tests the CIDs don't change, we are still prevented from creating new
paths because of the limit, causing the interop rebinding tests to fail.
  • Loading branch information
ghedo committed Jan 28, 2025
1 parent 3a70151 commit 711dec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/run_endpoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ WWW_DIR=/www
DOWNLOAD_DIR=/downloads
QUICHE_CLIENT=quiche-client
QUICHE_SERVER=quiche-server
QUICHE_CLIENT_OPT="--no-verify --dump-responses ${DOWNLOAD_DIR} --wire-version 00000001"
QUICHE_CLIENT_OPT="--no-verify --dump-responses ${DOWNLOAD_DIR} --wire-version 1 --max-active-cids 8"
# interop container has tso off. need to disable gso as well.
QUICHE_SERVER_OPT_COMMON="--listen [::]:443 --root $WWW_DIR --cert /certs/cert.pem --key /certs/priv.key --disable-gso --disable-pacing"
QUICHE_SERVER_OPT_COMMON="--listen [::]:443 --root $WWW_DIR --cert /certs/cert.pem --key /certs/priv.key --max-active-cids 8 --disable-gso --disable-pacing"
QUICHE_SERVER_OPT="$QUICHE_SERVER_OPT_COMMON --no-retry "
LOG_DIR=/logs
LOG=$LOG_DIR/log.txt
Expand Down

0 comments on commit 711dec3

Please sign in to comment.