Skip to content

Commit

Permalink
fix for issue Juniper#1247
Browse files Browse the repository at this point in the history
review comments
  • Loading branch information
chidanandpujar committed Sep 29, 2023
1 parent 5df4925 commit d8ee407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jnpr/junos/utils/sw.py
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ def _progress(report):
if re.search(r"(\d+)", x)
]
vc_members.remove(self.dev.facts["vc_master"])
vc_members.append(self.dev.facts["vc_master"])
vc_members.insert(len(vc_members), self.dev.facts["vc_master"])
for vc_id in vc_members:
if vc_id in member_id:
_progress(
Expand Down Expand Up @@ -1034,7 +1034,7 @@ def _progress(report):
if re.search(r"(\d+)", x)
]
vc_members.remove(self.dev.facts["vc_master"])
vc_members.append(self.dev.facts["vc_master"])
vc_members.insert(len(vc_members), self.dev.facts["vc_master"])
for vc_id in vc_members:
_progress(
"installing software on VC member: {} ... please "
Expand Down

0 comments on commit d8ee407

Please sign in to comment.