← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1356577] Re: Trove list of status values incorrect

 

** Changed in: horizon
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1356577

Title:
  Trove list of status values incorrect

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  The list of available status values for Trove instances is currently:

   STATUS_CHOICES = (
          ("active", True),
          ("shutoff", True),
          ("suspended", True),
          ("paused", True),
          ("error", False),

  Whereas the possible status values as determined by the Trove
  instance/models.py is:

  class InstanceStatus(object):
      ACTIVE = "ACTIVE"
      BLOCKED = "BLOCKED"
      BUILD = "BUILD"
      FAILED = "FAILED"
      REBOOT = "REBOOT"
      RESIZE = "RESIZE"
      BACKUP = "BACKUP"
      SHUTDOWN = "SHUTDOWN"
      ERROR = "ERROR"
      RESTART_REQUIRED = "RESTART_REQUIRED"

  We should update the horizon dashboard to this new set of states

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1356577/+subscriptions


References