Skip to content

Commit 2f0e7fd

Browse files
authored
Special Character fix (#1556)
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.
1 parent ef6d015 commit 2f0e7fd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/fpmsyncd/hld_fpmsyncd-NTT.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -299,19 +299,19 @@ As shown in below diff code, the template will generate config following below l
299299
```
300300
> zebra.conf.j2
301301
302-
{% endblock banner %}
302+
{/% endblock banner /%}
303303
!
304-
{% block fpm %}
305-
+{% if ( ('localhost' in DEVICE_METADATA) and ('nexthop_group' in DEVICE_METADATA['localhost']) and
306-
+ (DEVICE_METADATA['localhost']['nexthop_group'] == 'enabled') ) %}
304+
{/% block fpm /%}
305+
+{/% if ( ('localhost' in DEVICE_METADATA) and ('nexthop_group' in DEVICE_METADATA['localhost']) and
306+
+ (DEVICE_METADATA['localhost']['nexthop_group'] == 'enabled') ) /%}
307307
+fpm use-next-hop-groups
308-
+{% else %}
308+
+{/% else /%}
309309
! Uses the old known FPM behavior of including next hop information in the route (e.g. RTM_NEWROUTE) messages
310310
no fpm use-next-hop-groups
311-
+{% endif %}
311+
+{/% endif /%}
312312
!
313313
fpm address 127.0.0.1
314-
{% endblock fpm %}
314+
{/% endblock fpm /%}
315315
```
316316

317317
#### CLI/YANG model Enhancements

0 commit comments

Comments
 (0)