From 59cf107e17728e082236d79ff178bae1c140e718 Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Fri, 18 Nov 2016 10:22:42 +0100 Subject: [PATCH] Remove the generic eventlet monkey patch from test ironic-inspector tempest plugin caused unexplained ssh issues to tempest due to the eventlet monkey patch. Tempest does not uses eventlet and will not, and a late monkey patch just causes strange issues. Looks like safe to simply remove it from the __init__.py, the monkey happens in the right time when needed, even without this part. Change-Id: I2595277105236c371fdb76532f66ef2af3dddeb6 --- ironic_inspector/test/__init__.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ironic_inspector/test/__init__.py b/ironic_inspector/test/__init__.py index e9ec9f748..e69de29bb 100644 --- a/ironic_inspector/test/__init__.py +++ b/ironic_inspector/test/__init__.py @@ -1,15 +0,0 @@ -# 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. - -import eventlet -eventlet.monkey_patch()