Skip to content

Commit 208ffcc

Browse files
committed
comment out periodic cleanup of inactive streams
1 parent 3b0f96b commit 208ffcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ app.get("/debug/streams", (req, res) => {
286286
});
287287

288288
// Periodic Cleanup (if needed, extend later)
289-
setInterval(() => cleanupInactiveStreams(5 * 60 * 1000), 5 * 60 * 1000);
289+
// setInterval(() => cleanupInactiveStreams(5 * 60 * 1000), 5 * 60 * 1000);
290290

291291
// clear old streams on startup
292292
if (fs.existsSync("./streams")) {

0 commit comments

Comments
 (0)