Skip to content

Commit b1c1835

Browse files
committed
Improve health check endpoint test by suppressing output for cleaner logs
1 parent 95bf3d6 commit b1c1835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-dynamic-method.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
# Test health endpoint with retry
180180
echo "Testing health endpoint..."
181181
for attempt in {1..10}; do
182-
if curl -f http://localhost:5000/snapshot-info; then
182+
if curl -f http://localhost:5000/snapshot-info -s > /dev/null; then
183183
echo "✅ Health check passed on attempt $attempt"
184184
((api_success++))
185185
break

0 commit comments

Comments
 (0)