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 0c83afd commit 6ff8982Copy full SHA for 6ff8982
packages/shared/common/src/utils/http.ts
@@ -49,7 +49,7 @@ export function httpErrorMessage(
49
if (err.status) {
50
desc = `error ${err.status}${err.status === 401 ? ' (invalid SDK key)' : ''}`;
51
} else {
52
- desc = `I/O error (${err.message || err})`;
+ desc = `I/O error (${err.message || 'unknown error'})`;
53
}
54
const action = retryMessage ?? 'giving up permanently';
55
return `Received ${desc} for ${context} - ${action}`;
0 commit comments