Changeset 9d40cc9 for fedd/federation/emulab_access.py
- Timestamp:
- Aug 26, 2012 1:04:57 PM (12 years ago)
- Branches:
- master
- Children:
- 2f45140
- Parents:
- d070d9f (diff), eb117fe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/emulab_access.py
rd070d9f r9d40cc9 1052 1052 raise service_error(service_error.internal, 1053 1053 "Can't find experiment name for %s" % aid) 1054 1054 1055 stopper = self.stop_segment(keyfile=self.ssh_privkey_file, 1055 1056 debug=self.create_debug, boss=self.boss, ops=self.ops, … … 1058 1059 self.log.info("TerminateSegment succeeded for %s %s %s" % \ 1059 1060 (fid, proj, ename)) 1061 self.state_lock.acquire() 1062 # Remove the started flag/info - the segment is no longer started 1063 if aid in self.allocation: 1064 del self.allocation[aid]['started'] 1065 self.write_state() 1066 self.state_lock.release() 1060 1067 return { 'allocID': req['allocID'], 'proof': proof.to_dict() } 1061 1068
Note: See TracChangeset
for help on using the changeset viewer.