← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1356577] [NEW] Trove list of status values incorrect

 

Public bug reported:

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

** Affects: horizon
     Importance: Undecided
     Assignee: Andrew Bramley (andrlw)
         Status: New

** Changed in: horizon
     Assignee: (unassigned) => Andrew Bramley (andrlw)

-- 
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):
  New

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


Follow ups

References