Skip to content

Commit 9cd33bb

Browse files
lidizhengBen Reed
authored andcommitted
Restore for 2.7
1 parent a8fa7bf commit 9cd33bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python/grpcio_tests/tests/unit/_metadata_flags_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ def test_call(perform_call):
232232
test_threads = []
233233
for perform_call in _ALL_CALL_CASES:
234234
test_thread = threading.Thread(target=test_call,
235-
args=(perform_call,),
236-
daemon=True)
235+
args=(perform_call,))
236+
test_thread.daemon = True
237237
test_thread.exception = None
238238
test_thread.start()
239239
test_threads.append(test_thread)

0 commit comments

Comments
 (0)