Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit 744230f

Browse files
koki-developclaude
andcommitted
Fix CLI timeout override in test workflow
CLI sends run_timeout=3000 by default, which overrides server-side limit_overrides. Add explicit -r 30000 -c 30000 flags to use higher timeout values during testing. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5ad0936 commit 744230f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/package-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
do
138138
TEST_RUNTIME=$(awk -F. '{print $2}' <<< $(basename $tscript))
139139
echo Running $tscript with runtime=$TEST_RUNTIME
140-
docker run --network container:api -v "$PWD/cli:/app" -v "$PWD/$(dirname $tscript):/pkg" node:15 /app/index.js run $TEST_RUNTIME -l $PKG_VERSION /pkg/$(basename $tscript) > test_output
140+
docker run --network container:api -v "$PWD/cli:/app" -v "$PWD/$(dirname $tscript):/pkg" node:15 /app/index.js run $TEST_RUNTIME -l $PKG_VERSION -r 30000 -c 30000 /pkg/$(basename $tscript) > test_output
141141
cat test_output
142142
grep "OK" test_output
143143
done

0 commit comments

Comments
 (0)