~ubuntu-branches/ubuntu/vivid/heat/vivid

« back to all changes in this revision

Viewing changes to heat/openstack/common/eventlet_backdoor.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Corey Bryant
  • Date: 2015-01-06 08:55:22 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150106085522-4o3hnaff5lacvtrf
Tags: 2015.1~b1-0ubuntu1
[ Chuck Short ]
* Open up for vivid.
* debian/control: Update bzr branch. 
* debian/control: Add python-saharaclient,
  python-osprofiler, python-oslo.middleware, python-oslo.serialization.
* debian/patches/fix-reqirements.patch: Refreshed.
* debian/patches/skip-tests.patch: Updated to skip more tests.
* debian/rules: Skip integration tests.

[ Corey Bryant ]
* New upstream release.
  - d/control: Align requirements with upstream.
  - d/watch: Update uversionmangle for kilo beta naming.
  - d/rules: Generate heat.conf.sample and apply patch before copy.
  - d/rules: Run base tests instead of integration tests.
  - d/p/fix-requirements.patch: Refreshed.
  - d/p/remove-gettextutils-import.patch: Cherry picked from master.
* d/control: Bumped Standards-Version to 3.9.6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from __future__ import print_function
18
18
 
 
19
import copy
19
20
import errno
20
21
import gc
21
22
import os
29
30
import greenlet
30
31
from oslo.config import cfg
31
32
 
32
 
from heat.openstack.common.gettextutils import _LI
 
33
from heat.openstack.common._i18n import _LI
33
34
from heat.openstack.common import log as logging
34
35
 
35
36
help_for_backdoor_port = (
49
50
LOG = logging.getLogger(__name__)
50
51
 
51
52
 
 
53
def list_opts():
 
54
    """Entry point for oslo.config-generator.
 
55
    """
 
56
    return [(None, copy.deepcopy(eventlet_backdoor_opts))]
 
57
 
 
58
 
52
59
class EventletBackdoorConfigValueError(Exception):
53
60
    def __init__(self, port_range, help_msg, ex):
54
61
        msg = ('Invalid backdoor_port configuration %(range)s: %(ex)s. '