forked from M-Labs/artiq
worker_impl: do not write results without rid (#2020)
This commit is contained in:
parent
12649720f1
commit
e80442811e
|
@ -353,7 +353,10 @@ def main():
|
|||
exp_inst.analyze()
|
||||
put_completed()
|
||||
finally:
|
||||
write_results()
|
||||
# browser's analyze shouldn't write results,
|
||||
# since it doesn't run the experiment and cannot have rid
|
||||
if rid is not None:
|
||||
write_results()
|
||||
elif action == "examine":
|
||||
examine(ExamineDeviceMgr, ExamineDatasetMgr, obj["file"])
|
||||
put_completed()
|
||||
|
|
Loading…
Reference in New Issue