
This should prevent issues with classes which may not have been otherwise instrumented (and sahara_engine and sahara_all do the instrumentation at the beginning anyway). Issues have been notices with eventlet 0.20.1 which now instruments subprocess. Change-Id: I17adb877483dbf0b0aa559029c61715d1cef9d7b
25 lines
860 B
Python
25 lines
860 B
Python
# Copyright (c) 2014 Mirantis Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from sahara.utils import patches
|
|
patches.patch_all()
|
|
|
|
import oslo_i18n
|
|
|
|
# NOTE(slukjanov): i18n.enable_lazy() must be called before
|
|
# sahara.utils.i18n._() is called to ensure it has the desired
|
|
# lazy lookup behavior.
|
|
oslo_i18n.enable_lazy()
|