Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ private async Task PutJsonAsync(string instanceId, string fragment, object @obje
{
var mediaFormatter = new JsonMediaTypeFormatter()
{
// CodeQL [SM02211] False positive: serialization (write) path only; no untrusted JSON is deserialized here.
SerializerSettings = new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.All }
};
Comment on lines +308 to 310
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment doesn’t appear to use a suppression syntax that GitHub CodeQL recognizes (e.g., lgtm[cs/<query-id>] / codeql[cs/<query-id>] style), so it may not actually suppress the alert that prompted this PR. If the goal is suppression (not just justification), use the repository’s supported CodeQL inline suppression mechanism or adjust the CodeQL configuration/queries to ignore this specific finding, and reference the query id that maps to SM02211.

Copilot uses AI. Check for mistakes.

Expand Down
Loading