Adds hasattr checks for rpc calls used in network_cli plugins (#49173)
Network platforms that don't have cliconf plugin will fail when sending rpc calls for the reset_history and disable_response_logging functions because those are defined in cliconf exclusively at this time. This patch adds checks for those attributes before making the call
This commit is contained in:
parent
8796085569
commit
0b5b5e69d8
1 changed files with 5 additions and 2 deletions
|
@ -294,8 +294,11 @@ class Connection(NetworkConnectionBase):
|
||||||
|
|
||||||
self._play_context = play_context
|
self._play_context = play_context
|
||||||
|
|
||||||
self.reset_history()
|
if hasattr(self, 'reset_history'):
|
||||||
self.disable_response_logging()
|
self.reset_history()
|
||||||
|
if hasattr(self, 'disable_response_logging'):
|
||||||
|
self.disable_response_logging()
|
||||||
|
|
||||||
return messages
|
return messages
|
||||||
|
|
||||||
def _connect(self):
|
def _connect(self):
|
||||||
|
|
Loading…
Reference in a new issue