Skip to content

Commit

Permalink
fix: sse logger shutdown problem
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxiao committed Apr 13, 2020
1 parent 4f3ea6c commit 8dc37dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flow.py
Expand Up @@ -130,7 +130,7 @@ def test_flow_log_server(self):
f = Flow().load_config('yaml/test_log_server.yml')
with f.build() as fl:
print(JINA_GLOBAL.logserver.ready)
a = requests.get(JINA_GLOBAL.logserver.ready, 5)
a = requests.get(JINA_GLOBAL.logserver.ready, timeout=5)
self.assertEqual(a.status_code, 200)


Expand Down

0 comments on commit 8dc37dd

Please sign in to comment.