Commit failed when adding new bgp neighbor

,

Hi all, i have working bgp configuration:

set protocols bgp address-family ipv4-unicast redistribute connected
set protocols bgp address-family l2vpn-evpn advertise ipv4 unicast
set protocols bgp address-family l2vpn-evpn advertise-all-vni
set protocols bgp address-family l2vpn-evpn advertise-default-gw
set protocols bgp address-family l2vpn-evpn advertise-svi-ip
set protocols bgp address-family l2vpn-evpn default-originate ipv4
set protocols bgp address-family l2vpn-evpn rd '10.177.75.5:2'
set protocols bgp address-family l2vpn-evpn route-target export '64542:1'
set protocols bgp address-family l2vpn-evpn route-target import '64542:1'
set protocols bgp address-family l2vpn-evpn vni 7777 route-target export '64542:1'
set protocols bgp address-family l2vpn-evpn vni 7777 route-target import '64542:1'
set protocols bgp neighbor 10.177.70.62 peer-group 'UNDERLAY'
set protocols bgp neighbor 10.177.70.62 remote-as 'external'
set protocols bgp neighbor 10.177.75.1 peer-group 'OVERLAY'
set protocols bgp neighbor 10.177.75.1 remote-as '64542'
set protocols bgp parameters bestpath as-path multipath-relax
set protocols bgp parameters log-neighbor-changes
set protocols bgp parameters router-id '10.177.75.5'
set protocols bgp peer-group OVERLAY address-family l2vpn-evpn route-reflector-client
set protocols bgp peer-group OVERLAY capability dynamic
set protocols bgp peer-group OVERLAY local-as 64542
set protocols bgp peer-group OVERLAY ttl-security hops '3'
set protocols bgp peer-group OVERLAY update-source 'dum0'
set protocols bgp peer-group UNDERLAY address-family ipv4-unicast route-map export 'UNDERLAY-OUT'
set protocols bgp peer-group UNDERLAY capability dynamic
set protocols bgp system-as '4200010001'
set protocols bgp timers holdtime '90'
set protocols bgp timers keepalive '30'

But, if i trying to add new neighbor to Overlay peer-group error occured after commit:
commands:
set protocols bgp neighbor 10.177.75.2 peer-group ‘OVERLAY’
set protocols bgp neighbor 10.177.75.2 remote-as ‘64542’

Error:

[ protocols bgp ]
VyOS had an issue completing a command.

We are sorry that you encountered a problem while using VyOS.
There are a few things you can do to help us (and yourself):
- Contact us using the online help desk if you have a subscription:
  https://support.vyos.io/
- Make sure you are running the latest version of VyOS available at:
  https://vyos.net/get/
- Consult the community forum to see how to handle this issue:
  https://forum.vyos.io
- Join us on Slack where our users exchange help and advice:
  https://vyos.slack.com

When reporting problems, please include as much information as possible:
- do not obfuscate any data (feel free to contact us privately if your
  business policy requires it)
- and include all the information presented below

Report time:      2024-02-27 10:00:36
Image version:    VyOS 1.4-rolling-202402210305
Release train:    sagitta

Built by:         98030736+bot-ross[bot]@users.noreply.github.com
Built on:         Wed 21 Feb 2024 03:05 UTC
Build UUID:       ac17eaa0-f8b3-46fd-a04f-77a5d7443c63
Build commit ID:  bcac2eb1f9b49c

Architecture:     x86_64
Boot via:         installed image
System type:      KVM guest

Hardware vendor:  QEMU
Hardware model:   Standard PC (i440FX + PIIX, 1996)
Hardware S/N:
Hardware UUID:    e79a9ff2-ad64-4a12-89e9-6532764ffaa5

Traceback (most recent call last):
  File "/usr/libexec/vyos/conf_mode/protocols_bgp.py", line 611, in <module>
    apply(c)
  File "/usr/libexec/vyos/conf_mode/protocols_bgp.py", line 602, in apply
    frr_cfg.commit_configuration(bgp_daemon)
  File "/usr/lib/python3/dist-packages/vyos/frr.py", line 482, in commit_configuration
    raise ConfigurationNotValid(f'Config commit retry counter ({count_max}) exceeded for {daemon} dameon!')
vyos.frr.ConfigurationNotValid: Config commit retry counter (5) exceeded for bgpd dameon!



[[protocols bgp]] failed
Commit failed
[edit]

same error occured on latest 1.5 rolling release
Maybe my configuration is wrong? or this is the bug?