mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
feat: handle insert into database error
This commit is contained in:
parent
62cfd60e38
commit
209d003832
@ -205,7 +205,12 @@ func (api headscaleV1APIServer) SetTags(
|
||||
}
|
||||
}
|
||||
|
||||
api.h.SetTags(machine, request.GetTags())
|
||||
err = api.h.SetTags(machine, request.GetTags())
|
||||
if err != nil {
|
||||
return &v1.SetTagsResponse{
|
||||
Machine: nil,
|
||||
}, status.Error(codes.Internal, err.Error())
|
||||
}
|
||||
|
||||
log.Trace().
|
||||
Str("machine", machine.Name).
|
||||
|
Loading…
Reference in New Issue
Block a user