cloud-barista / cb-tumblebug

Cloud-Barista Multi-Cloud Infra Management Framework
Apache License 2.0
58 stars 51 forks source link

Fix vm status transition check bug #1902

Closed seokho-son closed 4 weeks ago

seokho-son commented 4 weeks ago

Fix vm status transition check bug for rebooting.

    // duplicated action
    if strings.EqualFold(vm.Status, targetStatus) {
        if !strings.EqualFold(action, model.ActionReboot) {
            return errors.New(action + " is not allowed for VM under " + vm.Status)
        }
    }
seokho-son commented 4 weeks ago

/approve