summaryrefslogtreecommitdiff
path: root/ironic/api/app.py
diff options
context:
space:
mode:
authorMartyn Taylor <mtaylor@redhat.com>2013-08-05 11:53:35 +0100
committerMartyn Taylor <mtaylor@redhat.com>2013-09-02 12:33:11 +0100
commit2c752dbf5420761fd1c25bca4639f09cad4793e6 (patch)
treef1235cbb3819bcc2c745531a5310c26a0aa7783d /ironic/api/app.py
parentc4de596b11f6163b8364a0c8e4be93d305bd633f (diff)
downloadironic-2c752dbf5420761fd1c25bca4639f09cad4793e6.tar.gz
Removed templates directory in api config
This patch removes the template_path config option in the API config file. The path currently points to a non existing directory. Since we are no longer supporting templates in ironic then we can simply remove this option altogether Change-Id: I94e8c2d8fec70175e294f9b67156f13cd11ee642
Diffstat (limited to 'ironic/api/app.py')
-rw-r--r--ironic/api/app.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/ironic/api/app.py b/ironic/api/app.py
index 2dea2e716..2c8dd8fde 100644
--- a/ironic/api/app.py
+++ b/ironic/api/app.py
@@ -59,7 +59,6 @@ def setup_app(pecan_config=None, extra_hooks=None):
app = pecan.make_app(
pecan_config.app.root,
static_root=pecan_config.app.static_root,
- template_path=pecan_config.app.template_path,
debug=CONF.debug,
force_canonical=getattr(pecan_config.app, 'force_canonical', True),
hooks=app_hooks,