Skip to content

Commit 200e20f

Browse files
committedMar 20, 2015
worker: close devices immediately after run and before analyze
1 parent 577754c commit 200e20f

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed
 

‎artiq/frontend/artiq_run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def main():
178178
key=itemgetter(0)):
179179
print("{}: {}".format(k, v))
180180
finally:
181-
dbh.close()
181+
dbh.close_devices()
182182

183183
if __name__ == "__main__":
184184
main()

‎artiq/master/worker_db.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,12 @@ def get_device(self, name):
104104
self.active_devices[name] = dev
105105
return dev
106106

107-
def close(self):
107+
def close_devices(self):
108108
"""Closes all active devices, in the opposite order as they were
109-
requested.
110-
111-
Do not use the same ``DBHub`` again after calling
112-
this function.
113-
114-
"""
109+
requested."""
115110
for dev in reversed(list(self.active_devices.values())):
116111
if isinstance(dev, (Client, BestEffortClient)):
117112
dev.close_rpc()
118113
elif hasattr(dev, "close"):
119114
dev.close()
115+
self.active_devices = OrderedDict()

‎artiq/master/worker_impl.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ def main():
116116
put_object({"action": "completed"})
117117
elif action == "run":
118118
exp_inst.run()
119+
dbh.close_devices()
119120
put_object({"action": "completed"})
120121
elif action == "analyze":
121122
exp_inst.analyze()
@@ -130,7 +131,7 @@ def main():
130131
elif action == "terminate":
131132
break
132133
finally:
133-
dbh.close()
134+
dbh.close_devices()
134135

135136
if __name__ == "__main__":
136137
main()

0 commit comments

Comments
 (0)
Please sign in to comment.