* Avoid capturing code of xdist @fjetter * Reduce memory footprint of culling P2P rechunking * Add tests for choosing default rechunking method * Increase visibility of GPU CI updates @charlesbluca * Bump test\_pause\_while\_idle timeout @fjetter * Concatenate small input chunks before P2P rechunking * Remove dump cluster from gen\_cluster @fjetter * Bump `numpy>=1.24` and `pyarrow>=14.0.1` minimum versions * Fix PipInstall plugin on Worker @hendrikmakait * Remove more Python 3.10 compatibility code @jrbourbeau * Use task-based rechunking to prechunk along partial boundaries @hendrikmakait * Ensure client\_desires\_keys does not corrupt Scheduler state @fjetter * Bump minimum ``cloudpickle`` to 3 @jrbourbeau OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-distributed?expand=0&rev=176
14 lines
438 B
Diff
14 lines
438 B
Diff
Index: distributed-2024.2.0/distributed/utils_test.py
|
|
===================================================================
|
|
--- distributed-2024.2.0.orig/distributed/utils_test.py
|
|
+++ distributed-2024.2.0/distributed/utils_test.py
|
|
@@ -1644,7 +1644,7 @@ def check_thread_leak():
|
|
yield
|
|
|
|
start = time()
|
|
- while True:
|
|
+ while False:
|
|
bad_threads = [
|
|
thread
|
|
for thread in threading.enumerate()
|