We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8528e4 commit 5c54bd9Copy full SHA for 5c54bd9
1 file changed
app.js
@@ -70,8 +70,9 @@ setInterval(() => {
70
});
71
if (Object.keys(offenders).length > 0) console.log(offenders);
72
73
- store.set('clients', {});
74
- global.gc();
+ clients = {};
+ store.set('clients', clients);
75
+ if (process.env.spec !== "true") global.gc();
76
}, settings.resetInterval);
77
78
function startServer() {
0 commit comments