summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBen Nemec <bnemec@redhat.com>2013-10-01 21:39:07 +0000
committerBen Nemec <bnemec@redhat.com>2013-10-01 21:41:55 +0000
commit53b9314799c7d83779032c4535734f1c05326a27 (patch)
treec368627bec12a86ee8d8549dcc3027bd1a91cc41 /bin
parent003a3b978de76241f34c01085bd51a8980aeecc3 (diff)
downloadheat-53b9314799c7d83779032c4535734f1c05326a27.tar.gz
Disable lazy translation
Late in the Havana cycle bug 1225099 was found in the lazy translation code, and to be safe it was decided to disable lazy translation for Havana. This change does that. Change-Id: Ia934a7df9386baf6ae8eb9ff48c24386c47ecd23 Partial-bug: 1225099
Diffstat (limited to 'bin')
-rwxr-xr-xbin/heat-api2
-rwxr-xr-xbin/heat-api-cfn2
-rwxr-xr-xbin/heat-api-cloudwatch2
-rwxr-xr-xbin/heat-engine2
4 files changed, 4 insertions, 4 deletions
diff --git a/bin/heat-api b/bin/heat-api
index 7286334de..3f9eeeabd 100755
--- a/bin/heat-api
+++ b/bin/heat-api
@@ -33,7 +33,7 @@ if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
from heat.openstack.common import gettextutils
-gettextutils.install('heat', lazy=True)
+gettextutils.install('heat', lazy=False)
from oslo.config import cfg
diff --git a/bin/heat-api-cfn b/bin/heat-api-cfn
index 71a97a5fb..03a14028b 100755
--- a/bin/heat-api-cfn
+++ b/bin/heat-api-cfn
@@ -35,7 +35,7 @@ if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
from heat.openstack.common import gettextutils
-gettextutils.install('heat', lazy=True)
+gettextutils.install('heat', lazy=False)
from oslo.config import cfg
diff --git a/bin/heat-api-cloudwatch b/bin/heat-api-cloudwatch
index b01db22e4..9100e878e 100755
--- a/bin/heat-api-cloudwatch
+++ b/bin/heat-api-cloudwatch
@@ -35,7 +35,7 @@ if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
from heat.openstack.common import gettextutils
-gettextutils.install('heat', lazy=True)
+gettextutils.install('heat', lazy=False)
from oslo.config import cfg
diff --git a/bin/heat-engine b/bin/heat-engine
index 36412cbae..483291c14 100755
--- a/bin/heat-engine
+++ b/bin/heat-engine
@@ -36,7 +36,7 @@ if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'heat', '__init__.py')):
from heat.openstack.common import gettextutils
-gettextutils.install('heat', lazy=True)
+gettextutils.install('heat', lazy=False)
from oslo.config import cfg