'Blazor track error 439 dropping signalr connection

I'm writing Blazor server side app in Visual Studio2022 that integrates with Google Maps API. After doing a geolocation lookup in JavaScript usings the maps api I noticed that the signalr connection would drop for a couple of seconds after which Blazor would reconnect to the WebSocket and the component appears rendered.

Here is the post request

POST https://dc.services.visualstudio.com/v2/track 439

and the response

{"itemsReceived":1,"itemsAccepted":0,"errors":[{"index":0,"statusCode":439,"message":"Daily quota exceeded"}],"appId":"appid"}

followed by

Error: Connection disconnected with error 'Error: Server returned an error on close: Connection closed with an error.'.

Why does this temporarily break my connection? If I figure out how to disable whatever is reaching quota cap when running locally is there any reason I shouldn't do the same when it hits live?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source