We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c184cd1 commit c3567f1Copy full SHA for c3567f1
tests/aio/test_threaded_client.py
@@ -12,6 +12,7 @@
12
# limitations under the License
13
14
import pickle
15
+import time
16
from unittest import mock
17
18
# noinspection PyPackageRequirements
@@ -46,6 +47,7 @@ def test_clone():
46
47
async_client = ThreadedRPClient(*args, **kwargs)
48
task1 = async_client.create_task(__empty_string())
49
task2 = async_client.create_task(__empty_string())
50
+ time.sleep(0.1)
51
task1.blocking_result()
52
task2.blocking_result()
53
async_client._add_current_item(task1)
0 commit comments