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 7f7bdc3 commit 8645242Copy full SHA for 8645242
src/cloud-variables.js
@@ -158,6 +158,10 @@ class WebSocketProvider {
158
console.log('Username is invalid; not reconnecting.');
159
return;
160
}
161
+ if (e && e.code === 4003) {
162
+ console.log('Cloud variable server is full; not reconnecting.');
163
+ return;
164
+ }
165
if (e && e.code === 4004) {
166
console.log('Project is blocked; not reconnecting.');
167
0 commit comments