We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 065b56a commit 2bd18f7Copy full SHA for 2bd18f7
1 file changed
test/cases/use_threads.py
@@ -17,6 +17,8 @@ def foo():
17
t2 = threading.Thread(target=worker, args=(1, instrumentation2.baz))
18
t1.start()
19
t2.start()
20
+ t1.join()
21
+ t2.join()
22
23
24
foo()
0 commit comments