mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-25 19:28:26 +08:00
protocols/pc_rpc: support dynamic target creation
This commit is contained in:
parent
120db8ba08
commit
168113ce55
@ -538,6 +538,9 @@ class Server(_AsyncioServer):
|
||||
except KeyError:
|
||||
return
|
||||
|
||||
if callable(target):
|
||||
target = target()
|
||||
|
||||
while True:
|
||||
line = await reader.readline()
|
||||
if not line:
|
||||
|
Loading…
Reference in New Issue
Block a user