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 5bbbea8 commit c85d2e3Copy full SHA for c85d2e3
src/common/rollbar-api.js
@@ -13,6 +13,9 @@ class RollbarAPI {
13
// Always resolve, regardless of status code.
14
// When we let axios reject, we end up with less specific error messages.
15
validateStatus: function (_status) { return true; },
16
+ // Let axios send anything, and let the API decide what the max length should be.
17
+ maxContentLength: Infinity,
18
+ maxBodyLength: Infinity,
19
});
20
}
21
0 commit comments