Bugfix: when namespace destruction causes a database error, return the
error, not nil.
This commit is contained in:
parent
a9a1a8fb3c
commit
306a80cf57
|
@ -59,7 +59,7 @@ func (h *Headscale) DestroyNamespace(name string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if result := h.db.Unscoped().Delete(&n); result.Error != nil {
|
if result := h.db.Unscoped().Delete(&n); result.Error != nil {
|
||||||
return err
|
return result.Error
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue