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
pull/43816/head
Ganesh Nalawade 6 years ago committed by GitHub
parent 6dce96e1d0
commit 4618583f2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save