Changeset 38d2f3c


Ignore:
Timestamp:
Dec 12, 2008 1:55:17 PM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
f3d72f7
Parents:
61c71bf
Message:

Local state was leaking into the Info call, and this should remove it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/experiment_control.py

    r61c71bf r38d2f3c  
    19421942            rv = copy.deepcopy(self.state[key])
    19431943        self.state_lock.release()
     1944        # Remove the owner info
     1945        del rv['owner']
     1946        # remove the allocationID info from each federant
     1947        for f in rv['federant']:
     1948            if f.has_key('allocID'): del f['allocID']
    19441949
    19451950        if rv: return rv
Note: See TracChangeset for help on using the changeset viewer.