Browse Source

Makes events.state.State pickleable

Mher Movsisyan 12 years ago
parent
commit
6bb253dc09
1 changed files with 9 additions and 0 deletions
  1. 9 0
      celery/events/state.py

+ 9 - 0
celery/events/state.py

@@ -356,5 +356,14 @@ class State(object):
         return '<ClusterState: events=%s tasks=%s>' % (self.event_count,
                                                        self.task_count)
 
+    def __getstate__(self):
+        d = dict(vars(self))
+        d.pop('_mutex')
+        return d
+
+    def __setstate__(self, state):
+        self.__dict__ = state
+        self._mutex = threading.Lock()
+
 
 state = State()