diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-11-02 13:28:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-11-02 13:28:59 +0000 |
| commit | 0131c98be790d76770e877ee2c28b887fb05a808 (patch) | |
| tree | 29efbce2d688baa36c67219c491266b20204febe /openstack | |
| parent | f43771cf1f83b0ded2e1ff3ba9a5960cdb7b48dd (diff) | |
| parent | 3361b58de89ab063292a1aa64f27b5bc3b43c12f (diff) | |
| download | oslo-0131c98be790d76770e877ee2c28b887fb05a808.tar.gz oslo-0131c98be790d76770e877ee2c28b887fb05a808.tar.xz oslo-0131c98be790d76770e877ee2c28b887fb05a808.zip | |
Merge "Make ThreadGroup derived from object to make mocking possible"
Diffstat (limited to 'openstack')
| -rw-r--r-- | openstack/common/threadgroup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/threadgroup.py b/openstack/common/threadgroup.py index 9d2f0b6..f501889 100644 --- a/openstack/common/threadgroup.py +++ b/openstack/common/threadgroup.py @@ -53,7 +53,7 @@ class Thread(object): return self.thread.wait() -class ThreadGroup(): +class ThreadGroup(object): """ The point of this class is to: - keep track of timers and greenthreads (making it easier to stop them |
