diff options
Diffstat (limited to 'config/bgp_configs.go')
-rw-r--r-- | config/bgp_configs.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/bgp_configs.go b/config/bgp_configs.go index 9ea05258..17ae937d 100644 --- a/config/bgp_configs.go +++ b/config/bgp_configs.go @@ -987,6 +987,9 @@ func (lhs *ZebraState) Equal(rhs *ZebraState) bool { return false } } + if lhs.Version != rhs.Version { + return false + } return true } @@ -1021,6 +1024,9 @@ func (lhs *ZebraConfig) Equal(rhs *ZebraConfig) bool { return false } } + if lhs.Version != rhs.Version { + return false + } return true } |