File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def main():
178
178
key = itemgetter (0 )):
179
179
print ("{}: {}" .format (k , v ))
180
180
finally :
181
- dbh .close ()
181
+ dbh .close_devices ()
182
182
183
183
if __name__ == "__main__" :
184
184
main ()
Original file line number Diff line number Diff line change @@ -104,16 +104,12 @@ def get_device(self, name):
104
104
self .active_devices [name ] = dev
105
105
return dev
106
106
107
- def close (self ):
107
+ def close_devices (self ):
108
108
"""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."""
115
110
for dev in reversed (list (self .active_devices .values ())):
116
111
if isinstance (dev , (Client , BestEffortClient )):
117
112
dev .close_rpc ()
118
113
elif hasattr (dev , "close" ):
119
114
dev .close ()
115
+ self .active_devices = OrderedDict ()
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ def main():
116
116
put_object ({"action" : "completed" })
117
117
elif action == "run" :
118
118
exp_inst .run ()
119
+ dbh .close_devices ()
119
120
put_object ({"action" : "completed" })
120
121
elif action == "analyze" :
121
122
exp_inst .analyze ()
@@ -130,7 +131,7 @@ def main():
130
131
elif action == "terminate" :
131
132
break
132
133
finally :
133
- dbh .close ()
134
+ dbh .close_devices ()
134
135
135
136
if __name__ == "__main__" :
136
137
main ()
You can’t perform that action at this time.
0 commit comments