Files
neutron/neutron/common/eventlet_utils.py
Rodolfo Alonso Hernandez f9b5a7b6d7 Add 'is_available' function
Resolves the following warnings seen in the likes of Neutron:

  opt/stack/neutron/neutron/common/eventlet_utils.py:28:
  DeprecationWarning: Please provide `is_available()`
  function in your custom Eventlet hub <module 'oslo_service'

  It must return bool: whether hub supports current platform. See
  eventlet/hubs/{epoll,kqueue} for example.

Since we're simply taking the default hub provided by eventlet and
overriding a single attribute, we will always have support so set the
attribute.

Change-Id: Ie90bcce1d1724108e5d0e583a36aa2e20102bba4
2020-02-10 18:02:49 +00:00

40 lines
1.4 KiB
Python

# Copyright (c) 2015 Cloudbase Solutions.
# All Rights Reserved.
#
# 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 os
import eventlet
from oslo_utils import importutils
def monkey_patch():
# NOTE(slaweq): to workaround issue with import cycles in
# eventlet < 0.22.0;
# This issue is fixed in eventlet with patch
# https://github.com/eventlet/eventlet/commit/b756447bab51046dfc6f1e0e299cc997ab343701
# For details please check https://bugs.launchpad.net/neutron/+bug/1745013
hub = eventlet.hubs.get_hub()
hub.is_available = lambda: True
if os.name != 'nt':
eventlet.monkey_patch()
p_c_e = importutils.import_module('pyroute2.config.asyncio')
p_c_e.asyncio_config()
else:
# eventlet monkey patching the os module causes subprocess.Popen to
# fail on Windows when using pipes due to missing non-blocking IO
# support.
eventlet.monkey_patch(os=False)