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
sys.path.insert(0, possible_topdir)
from cinder.openstack.common import gettextutils
-gettextutils.install('cinder', lazy=True)
+gettextutils.install('cinder', lazy=False)
from cinder.common import config # Need to register global_opts
from cinder.openstack.common import log as logging
sys.path.insert(0, possible_topdir)
from cinder.openstack.common import gettextutils
-gettextutils.install('cinder', lazy=True)
+gettextutils.install('cinder', lazy=False)
from cinder.common import config # Need to register global_opts
from cinder.openstack.common import log as logging
from oslo.config import cfg
from cinder.openstack.common import gettextutils
-gettextutils.install('cinder', lazy=True)
+gettextutils.install('cinder', lazy=False)
from cinder.db.sqlalchemy import migrate_repo
import cinder.openstack.common.db.sqlalchemy.session