We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3c017 commit 1261b72Copy full SHA for 1261b72
netsim/augment/nodes.py
@@ -525,7 +525,7 @@ def cleanup_daemon_config(n: Box) -> None:
525
526
kn = k.replace('@','.') # A workaround for aggressive de-dotting
527
# Leave config mappings for device configuration, module configuration, or extra configs
528
- if kn == n.device or kn in n.get('module',[]) or kn in n.get('config',[]):
+ if kn == n.device or kn in n.get('module',[]) or kn in n.get('config',[]) or kn == 'initial':
529
continue
530
531
n._daemon_config.pop(k,None)
0 commit comments