From c4d3b680841779a15d09328f8cffd9723819f9e4 Mon Sep 17 00:00:00 2001 From: chidanandpujar Date: Tue, 30 Apr 2024 15:52:46 +0530 Subject: [PATCH] Fix for invoking _system_operation with arg m_id --- 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 95f7745b8..c9e42f58e 100644 --- a/lib/jnpr/junos/utils/sw.py +++ b/lib/jnpr/junos/utils/sw.py @@ -1234,7 +1234,7 @@ def reboot( for m_id in member_id: if m_id in vc_members: return self._system_operation( - cmd, in_min, at, all_re, other_re, vmhost, member_id + cmd, in_min, at, all_re, other_re, vmhost, member_id=m_id ) else: return self._system_operation(cmd, in_min, at, all_re, other_re, vmhost)