Skip to content

Commit f2ce6e8

Browse files
committed
ref: thread timing (re #14)
1 parent a51cc7f commit f2ce6e8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

dcoraid/upload/job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
VALID_RESOURCE_REGEXP = r"^[a-zA-Z0-9\.,\-_\+\(\)\[\]]+$"
3838

3939

40-
class UploadJob(object):
40+
class UploadJob:
4141
def __init__(self, api, dataset_id, resource_paths,
4242
resource_names=None, resource_supplements=None,
4343
task_id=None, cache_dir=None):

dcoraid/worker/daemon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run(self):
3636
break
3737
else:
3838
# Nothing to do, sleep a little to avoid 100% CPU
39-
time.sleep(.1)
39+
time.sleep(.05)
4040
continue
4141
# Perform daemon task
4242
task = getattr(job, self.job_function_name)

dcoraid/worker/kthread.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ def terminate(self):
6161
atexit.unregister(self.terminate)
6262
while self.is_alive():
6363
self.raise_exc(KThreadExit)
64-
time.sleep(.05)
64+
time.sleep(.1)

tests/test_gui.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import pathlib
22
import shutil
33
import tempfile
4+
import time
45
from unittest import mock
56

67
import uuid
@@ -38,6 +39,8 @@ def mw(qtbot):
3839
yield mw
3940
# Make sure that all daemons are gone
4041
mw.close()
42+
# It is extremely weird, but this seems to be important to avoid segfaults!
43+
time.sleep(1)
4144
QtTest.QTest.qWait(100)
4245
QtWidgets.QApplication.processEvents(QtCore.QEventLoop.AllEvents, 5000)
4346

@@ -81,6 +84,7 @@ def test_gui_anonymous(qtbot):
8184
spath.unlink()
8285
shutil.copy2(stmp, spath)
8386
mw.close()
87+
time.sleep(1)
8488
QtTest.QTest.qWait(500)
8589
QtWidgets.QApplication.processEvents(QtCore.QEventLoop.AllEvents, 500)
8690

0 commit comments

Comments
 (0)