From fb6a54df363bf0048165feb54f06f4986c2d580d Mon Sep 17 00:00:00 2001 From: Ryan Waterston Date: Fri, 17 Jun 2022 15:00:42 -0500 Subject: [PATCH] - Changed RPC call to append instead of overwrite for dual-RE systems during a reboot --- lib/jnpr/junos/utils/sw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jnpr/junos/utils/sw.py b/lib/jnpr/junos/utils/sw.py index 4b909ffba..e6b234433 100644 --- a/lib/jnpr/junos/utils/sw.py +++ b/lib/jnpr/junos/utils/sw.py @@ -1077,7 +1077,7 @@ def _system_operation( """ if other_re is True: if self._dev.facts["2RE"]: - cmd = E("other-routing-engine") + cmd.append(E("other-routing-engine")) elif all_re is True: if self._multi_RE is True and vmhost is True: cmd.append(E("routing-engine", "both"))