We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 516bd3b commit 632b42fCopy full SHA for 632b42f
.github/workflows/test-mcp-server.yml
@@ -236,8 +236,8 @@ jobs:
236
237
echo "HTTP response code: $HTTP_CODE"
238
239
- if [[ "$HTTP_CODE" == "500" ]] && [[ "$RESPONSE" == *"Invalid API Key"* ]]; then
240
- echo "LLM authentication error detected - this is expected with invalid API keys"
+ if [[ "$HTTP_CODE" == "500" ]] && ([[ "$RESPONSE" == *"Invalid API Key"* ]] || [[ "$RESPONSE" == *"local variable"* ]] || [[ "$RESPONSE" == *"Connection error"* ]]); then
+ echo "LLM service error detected - this is expected with invalid API keys or connection issues"
241
echo "status=auth_error" >> $GITHUB_OUTPUT
242
exit 0
243
elif [[ "$HTTP_CODE" != "200" ]]; then
0 commit comments