interactive args: unclear error message when supplying args simultaneously
SimonRenblad opened this issue · 0 comments
SimonRenblad commented
Bug Report
One-Line Summary
Simultaneous calls to InteractiveArgsDB.supply
with the same RID may lead to duplicate calls to futures[rid].set_result
.
Issue Details
If two calls to InteractiveArgsDB.supply
with the same RID run before the corresponding InteractiveArgsDB.get
coroutine deletes the future with the associated RID, an InvalidStateError
is thrown instead of a ValueError
.
Steps to Reproduce
- Simulate the condition by adding some
asyncio.sleep
after theawait future[rid]
line inInteractiveArgsDB.get
. - Submit an experiment with interactive arguments.
- Make two identical
artiq_client supply-interactive
calls within the delay in step 1.
Expected Behavior
Second supply
call should throw:
ValueError: no experiment with this RID is waiting for interactive arguments
Actual (undesired) Behavior
Second supply
call throws:
asyncio.exceptions.InvalidStateError: invalid state
Your System
- Operating System: NixOS
- ARTIQ version: v.8 beta (commit 13a36bf)