Merge "Remove deprecation of snmp drivers"

This commit is contained in:
Jenkins 2016-12-12 14:29:38 +00:00 committed by Gerrit Code Review
commit b7f001f441
3 changed files with 4 additions and 4 deletions

View File

@ -219,8 +219,6 @@ class FakeDracDriver(base.BaseDriver):
class FakeSNMPDriver(base.BaseDriver):
"""Fake SNMP driver."""
supported = False
def __init__(self):
if not importutils.try_import('pysnmp'):
raise exception.DriverLoadError(

View File

@ -234,8 +234,6 @@ class PXEAndSNMPDriver(base.BaseDriver):
class is merely the glue between them.
"""
supported = False
def __init__(self):
# Driver has a runtime dependency on PySNMP, abort load if it is absent
if not importutils.try_import('pysnmp'):

View File

@ -0,0 +1,4 @@
---
features:
- The pxe_snmp and fake_snmp are now supported and
tested.