Merge "Don't set use_stderr to False for tests"

This commit is contained in:
Jenkins 2017-04-15 04:18:38 +00:00 committed by Gerrit Code Review
commit dc7efdbfdd
2 changed files with 0 additions and 6 deletions

View File

@ -82,7 +82,6 @@ def setup_test_logging(config_opts, log_dir, log_file_path_template):
log_file = sanitize_log_path(
os.path.join(log_dir, log_file_path_template))
config_opts.set_override('log_file', log_file)
config_opts.set_override('use_stderr', False)
config.setup_logging()

View File

@ -13,12 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_config import cfg
from neutron.common import eventlet_utils
cfg.CONF.use_stderr = False
eventlet_utils.monkey_patch()