[client] Don't return error in userspace mode without firewall (#2924)

This commit is contained in:
Viktor Liu 2024-11-25 15:11:31 +01:00 committed by GitHub
parent 56cecf849e
commit 940d0c48c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -239,7 +239,7 @@ func (m *Manager) DeletePeerRule(rule firewall.Rule) error {
// SetLegacyManagement doesn't need to be implemented for this manager
func (m *Manager) SetLegacyManagement(isLegacy bool) error {
if m.nativeFirewall == nil {
return errRouteNotSupported
return nil
}
return m.nativeFirewall.SetLegacyManagement(isLegacy)
}