From 76e7542f0f54779f469df7125ff7b94480c44963 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 a31cdbe40..e8a405128 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(): -- 2.45.2