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()
|
exp_inst.analyze()
|
||||||
put_completed()
|
put_completed()
|
||||||
finally:
|
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":
|
elif action == "examine":
|
||||||
examine(ExamineDeviceMgr, ExamineDatasetMgr, obj["file"])
|
examine(ExamineDeviceMgr, ExamineDatasetMgr, obj["file"])
|
||||||
put_completed()
|
put_completed()
|
||||||
|
|
Loading…
Reference in New Issue