Update eos clcionf plugin (#43809)
* If the remote host supports session capability set the `supports_generate_diff` flag to false which identifies if config diff should be generated within module or not
This commit is contained in:
parent
6dce96e1d0
commit
4618583f2f
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ class Cliconf(CliconfBase):
|
|||
'supports_multiline_delimiter': False,
|
||||
'supports_diff_match': True,
|
||||
'supports_diff_ignore_lines': True,
|
||||
'supports_generate_diff': True,
|
||||
'supports_generate_diff': False if self.supports_sessions else True,
|
||||
'supports_replace': True if self.supports_sessions else False
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue