You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instead of async def my_test(jp_ws_fetch):
I must use async def my_test(jp_ws_fetch, http_server_client) or async def my_test(jp_fetch, jp_ws_fetch) to run ws_fetch correctly, which may confuse me when I only want to test websocet
The text was updated successfully, but these errors were encountered:
* fix jp_ws_fetch not work by its own #441
* add a method for create a task immediately after io_loop is ready
* create io_loop earlier to solve 'enable a way to run a task when an io_loop is created #531'
Co-authored-by: yi suo <pumpkinday2012@gmail.com>
instead of
async def my_test(jp_ws_fetch):
I must use
async def my_test(jp_ws_fetch, http_server_client)
orasync def my_test(jp_fetch, jp_ws_fetch)
to run ws_fetch correctly, which may confuse me when I only want to test websocetThe text was updated successfully, but these errors were encountered: