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 4d2ba0e commit d49093bCopy full SHA for d49093b
cluster_tools/cluster_tools/executors/dask.py
@@ -1,7 +1,6 @@
1
import os
2
import re
3
import signal
4
-import traceback
5
from concurrent import futures
6
from concurrent.futures import Future
7
from functools import partial
@@ -261,8 +260,6 @@ def handle_kill(
261
260
existing_sigint_handler(signum, frame)
262
263
def shutdown(self, wait: bool = True, *, cancel_futures: bool = False) -> None:
264
- print(f"{wait=} {cancel_futures=}")
265
- traceback.print_stack()
266
if wait:
267
for fut in list(self.pending_futures):
268
fut.result()
0 commit comments