From 13029d71c6526116bedf2e1b8100a176dc5fdc75 Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Tue, 1 Oct 2013 23:15:23 +0000 Subject: [PATCH] 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 --- neutron/server/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/server/__init__.py b/neutron/server/__init__.py index a31cdbe403..e8a4051287 100755 --- a/neutron/server/__init__.py +++ b/neutron/server/__init__.py @@ -28,7 +28,7 @@ from neutron.common import config from neutron import service from neutron.openstack.common import gettextutils -gettextutils.install('neutron', lazy=True) +gettextutils.install('neutron', lazy=False) def main():