From e108bc4521e5caf7327ee9f2025ed2e9095341e6 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 5 Sep 2018 18:31:10 -0400 Subject: [PATCH] Must pass a main async func to tractor --- piker/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/cli.py b/piker/cli.py index b882c9b9..ab960363 100644 --- a/piker/cli.py +++ b/piker/cli.py @@ -29,7 +29,7 @@ def pikerd(loglevel, host): """ get_console_log(loglevel) tractor.run( - None, # no main task - this is a daemon + partial(trio.sleep, float('inf')), # daemon / arbiter statespace={ 'broker2tickersubs': {}, 'clients': {},