Skip to content

Commit 27c5e8d

Browse files
fix: log exception on malformed conformance context JSON
1 parent d56bdbc commit 27c5e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/conformance/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ async def run_auth_code_client(server_url: str) -> None:
295295
)
296296
logger.debug(f"Pre-loaded client credentials: client_id={client_id}")
297297
except json.JSONDecodeError:
298-
pass
298+
logger.exception("Failed to parse MCP_CONFORMANCE_CONTEXT")
299299

300300
oauth_auth = OAuthClientProvider(
301301
server_url=server_url,

0 commit comments

Comments
 (0)