Skip to content

Commit c245c04

Browse files
committed
2400000
1 parent 9eff24a commit c245c04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/qiita

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ def start(port, master):
464464
# Set a PeriodicCallback for cleaning up the threads every 10 seconds
465465
# To understand why this is working as expected, check the multiprocessing
466466
# documentation https://docs.python.org/2/library/multiprocessing.html
467-
PeriodicCallback(lambda: active_children(), 300000).start()
467+
# 2400000 == 40 min
468+
PeriodicCallback(lambda: active_children(), 2400000).start()
468469

469470
ioloop.start()
470471

0 commit comments

Comments
 (0)