Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bpgd: adjust return value for the same command
The same command should be accepted, it is an empty operation. Take `neighbor <X> graceful-restart-helper` as an example: Before: ``` anlan(config-router)# neighbor 3.3.3.3 graceful-restart-helper Graceful restart configuration changed, reset this peer to take effect anlan(config-router)# neighbor 3.3.3.3 graceful-restart-helper Graceful restart configuration changed, reset this peer to take effect % The Graceful Restart command used is not valid at this moment. anlan(config-router)# ``` After: ``` anlan(config-router)# neighbor 3.3.3.3 graceful-restart-helper Graceful restart configuration changed, reset this peer to take effect anlan(config-router)# neighbor 3.3.3.3 graceful-restart-helper Graceful restart configuration changed, reset this peer to take effect anlan(config-router)# ``` Signed-off-by: anlan_cs <[email protected]>
- Loading branch information