~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/openstack/common/threadgroup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-03-30 11:14:57 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150330111457-kr4ju3guf22m4vbz
Tags: 2015.1~b3-0ubuntu1
* New upstream release.
  + d/control: 
    - Align with upstream dependencies.
    - Add dh-python to build-dependencies.
    - Add psmisc as a dependency. (LP: #1358820)
  + d/p/fix-requirements.patch: Rediffed.
  + d/ironic-conductor.init.in: Fixed typos in LSB headers,
    thanks to JJ Asghar. (LP: #1429962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
12
#    License for the specific language governing permissions and limitations
13
13
#    under the License.
 
14
import logging
14
15
import threading
15
16
 
16
17
import eventlet
17
18
from eventlet import greenpool
18
19
 
19
 
from ironic.openstack.common import log as logging
20
20
from ironic.openstack.common import loopingcall
21
21
 
22
22
 
96
96
                continue
97
97
            try:
98
98
                x.stop()
 
99
            except eventlet.greenlet.GreenletExit:
 
100
                pass
99
101
            except Exception as ex:
100
102
                LOG.exception(ex)
101
103