Skip to content

Commit

Permalink
lxc: Fix bulk unfreeze (from Incus) (#14136)
Browse files Browse the repository at this point in the history
Cherry-picked from lxc/incus#387. Tested locally
✅.
  • Loading branch information
tomponline authored Sep 25, 2024
2 parents d6b1f7f + 9e4bb7f commit fce1ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lxd/instances_put.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func instancesPut(d *Daemon, r *http.Request) response.Response {
}

case instancetype.Unfreeze:
if inst.IsRunning() {
if !inst.IsFrozen() {
continue
}
}
Expand Down

0 comments on commit fce1ec2

Please sign in to comment.