Skip to content

Commit

Permalink
Special Character fix (#1556)
Browse files Browse the repository at this point in the history
Update hld_fpmsyncd-NTT.md

page deployment error has been seen in one more file now due to special character present in one of the checked in HLD (hld_fpmsyncd-NTT.md). The same has been fixed in this PR. Kindly review and approve.
  • Loading branch information
kannankvs authored Jan 3, 2024
1 parent ef6d015 commit 2f0e7fd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/fpmsyncd/hld_fpmsyncd-NTT.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,19 +299,19 @@ As shown in below diff code, the template will generate config following below l
```
> zebra.conf.j2
{% endblock banner %}
{/% endblock banner /%}
!
{% block fpm %}
+{% if ( ('localhost' in DEVICE_METADATA) and ('nexthop_group' in DEVICE_METADATA['localhost']) and
+ (DEVICE_METADATA['localhost']['nexthop_group'] == 'enabled') ) %}
{/% block fpm /%}
+{/% if ( ('localhost' in DEVICE_METADATA) and ('nexthop_group' in DEVICE_METADATA['localhost']) and
+ (DEVICE_METADATA['localhost']['nexthop_group'] == 'enabled') ) /%}
+fpm use-next-hop-groups
+{% else %}
+{/% else /%}
! Uses the old known FPM behavior of including next hop information in the route (e.g. RTM_NEWROUTE) messages
no fpm use-next-hop-groups
+{% endif %}
+{/% endif /%}
!
fpm address 127.0.0.1
{% endblock fpm %}
{/% endblock fpm /%}
```

#### CLI/YANG model Enhancements
Expand Down

0 comments on commit 2f0e7fd

Please sign in to comment.