Skip to content

Commit

Permalink
hotfix for srlinux node filtering in clab file
Browse files Browse the repository at this point in the history
  • Loading branch information
wdesmedt committed Jul 23, 2024
1 parent 32a6ce4 commit 6484169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nornir_srl/fsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def cli(
srl_kinds = [
k
for k, v in topo["topology"].get("kinds", {}).items()
if "srlinux" in v.get("image")
if "/srlinux" in v.get("image")
]
clab_nodes: Dict[str, Dict] = topo["topology"]["nodes"]
for node, node_spec in clab_nodes.items():
Expand Down

0 comments on commit 6484169

Please sign in to comment.