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
(cherry picked from commit 59cf107e17)
This commit is contained in:
Attila Fazekas 2016-11-18 10:22:42 +01:00 committed by Dmitry Tantsur
parent fbef23ec9b
commit e301f9227d
1 changed files with 0 additions and 15 deletions

View File

@ -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()