WAN load balancer configurations always add a default 5 packet/sec limit on nftables configurations, despite [[ https://github.com/vyos/vyos-1x/blob/current/src/conf_mode/load-balancing_wan.py#L41-L44 | code being present ]] to remove such configuration. The issue appears to trace back to the `get_config_dict()` function in `config.py`. When `with_recursive_results` is passed to the function, `recursive=True` isn't passed to `get_config_defaults()`, meaning defaults aren't recursively checked and the default limit configuration never gets removed.
Opening a PR shortly to resolve this issue.