We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79af1e6 commit 01f5c2dCopy full SHA for 01f5c2d
1 file changed
f5/bigip/tm/gtm/topology.py
@@ -147,6 +147,9 @@ def load(self, **kwargs):
147
return self._load(**kwargs)
148
149
def exists(self, **kwargs):
150
+ """Providing a partition is not necessary on topology; causes errors"""
151
+ if 'partition' in kwargs:
152
+ kwargs.pop('partition')
153
kwargs['transform_name'] = True
154
return self._exists(**kwargs)
155
0 commit comments