We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3564fc commit 49a45e4Copy full SHA for 49a45e4
2 files changed
.github/workflows/sdk-test.yml
@@ -37,11 +37,11 @@ jobs:
37
echo "Checking port $port..."
38
for i in {1..30}; do
39
if curl -f -s http://localhost:$port/ > /dev/null 2>&1; then
40
- echo "✓ Port $port is ready"
+ echo "OK Port $port is ready"
41
break
42
fi
43
if [ $i -eq 30 ]; then
44
- echo "✗ Port $port failed to start after 60 seconds"
+ echo "FAIL Port $port failed to start after 60 seconds"
45
exit 1
46
47
echo " Waiting for port $port... ($i/30)"
tests/run-sdk-tests.sh
@@ -10,7 +10,7 @@
10
set -e
11
12
# Default to all three backend configurations
13
-PORTS="${SDK_TEST_PORTS:-48331 48332 48333}"
+PORTS="${SDK_TEST_PORTS:-7331 7332 7333}"
14
15
# Backend names for display
16
declare -A BACKEND_NAMES
0 commit comments