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 9f5f83c commit 7ddb162Copy full SHA for 7ddb162
src/api/datadog.ts
@@ -57,6 +57,9 @@ export class DatadogApi {
57
if (!response.ok) {
58
const text = await response.text();
59
throw new Error(`Datadog API error (${response.status}): ${text}`);
60
+ } else {
61
+ // This way we can avoid worker logs about stalled http responses
62
+ await response.text();
63
}
64
65
0 commit comments