Skip to content

Commit a106179

Browse files
zancasPaul Breaux
authored andcommitted
mv and rename pollster
Issues: Fixes #<issueid> Problem: Analysis: Tests:
1 parent 55bb818 commit a106179

2 files changed

Lines changed: 10 additions & 47 deletions

File tree

f5/common/pollster.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

f5/multi_device/cluster/__init__.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,23 @@
1414
#
1515
#
1616

17-
from f5.bigip.mixins import DeviceMixin
17+
from f5.sdk_exceptions import F5SDKError
18+
from f5.utils.mixins import DeviceMixin
1819
from f5.multi_device.cluster.managers import DeviceGroupManager as dgm
1920
from f5.multi_device.cluster.managers import TrustedPeerManager as peer_mgr
2021

2122

22-
class ClusterNotSupported(Exception):
23+
class ClusterError(F5SDKError):
24+
def __init__(self, *arg, **kwargs):
25+
#TODO: Place your logging 0ssmness here.
26+
super(ClusterError, self).__init__(*args, **kwargs)
27+
28+
29+
class ClusterNotSupported(ClusterError):
2330
pass
2431

2532

26-
class RootRemovalNotSupported(Exception):
33+
class RootRemovalNotSupported(ClusterError):
2734
pass
2835

2936

0 commit comments

Comments
 (0)