worker_impl: do not write results without rid (#2020)

This commit is contained in:
Egor Savkin 2022-12-09 16:18:28 +08:00 committed by Sebastien Bourdeauducq
parent 8f3d06a515
commit 19824cefba
1 changed files with 4 additions and 1 deletions

View File

@ -352,7 +352,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()