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

« back to all changes in this revision

Viewing changes to ironic/api/config.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:
12
12
#    License for the specific language governing permissions and limitations
13
13
#    under the License.
14
14
 
15
 
from oslo_config import cfg
16
 
 
17
15
# Server Specific Configurations
18
16
# See https://pecan.readthedocs.org/en/latest/configuration.html#server-configuration # noqa
19
17
server = {
32
30
    'acl_public_routes': [
33
31
        '/',
34
32
        '/v1',
35
 
        '/v1/drivers/agent_[a-z]*/vendor_passthru/lookup',
 
33
        '/v1/drivers/[a-z_]*/vendor_passthru/lookup',
36
34
        '/v1/nodes/[a-z0-9\-]+/vendor_passthru/heartbeat'
37
35
    ],
38
36
}
40
38
# WSME Configurations
41
39
# See https://wsme.readthedocs.org/en/latest/integrate.html#configuration
42
40
wsme = {
43
 
    'debug': cfg.CONF.debug,
 
41
    'debug': False,
44
42
}