Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14864625
D5583.id17238.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
581 B
Subscribers
None
D5583.id17238.diff
View Options
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -473,13 +473,13 @@
# Start our result collection thread.
t = threading.Thread(target=handle_update_messages)
- t.setDaemon(True)
+ t.daemon = True
t.start()
# Start some worker threads
for j in range(num_jobs):
t = threading.Thread(target=handle_test_cases)
- t.setDaemon(True)
+ t.daemon = True
t.start()
# Push all our test cases into the job queue.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, May 20, 21:14 (14 h, 51 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5864923
Default Alt Text
D5583.id17238.diff (581 B)
Attached To
D5583: [test_runner] Use the daemon property directly instead of setDaemon()
Event Timeline
Log In to Comment