summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhenguo Niu <Niu.ZGlinux@gmail.com>2013-12-02 17:16:38 +0800
committerKieran Spear <kispear@gmail.com>2014-03-10 10:44:41 +1100
commit8db46878909de3f836e3e35399732a6d083059e8 (patch)
treedc6deec44541f4339568e7d56a66f8f976353466
parent206fa038e738fb6e43a4b44aa1267c78f41225dc (diff)
downloadhorizon-8db46878909de3f836e3e35399732a6d083059e8.tar.gz
Allow snapshots of paused and suspended instances
Change-Id: Id483d13d8d329aee4a57d0a89e6368fab3b201ec Closes-Bug: #1256821 (cherry picked from commit 860b2a0be11ceb2e57c4c0d0e7ff020325277c78)
-rw-r--r--openstack_dashboard/dashboards/project/instances/tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/project/instances/tables.py b/openstack_dashboard/dashboards/project/instances/tables.py
index 87ee0dccb..fd154644f 100644
--- a/openstack_dashboard/dashboards/project/instances/tables.py
+++ b/openstack_dashboard/dashboards/project/instances/tables.py
@@ -42,7 +42,7 @@ from openstack_dashboard.dashboards.project.instances import tabs
LOG = logging.getLogger(__name__)
ACTIVE_STATES = ("ACTIVE",)
-SNAPSHOT_READY_STATES = ("ACTIVE", "SHUTOFF")
+SNAPSHOT_READY_STATES = ("ACTIVE", "SHUTOFF", "PAUSED", "SUSPENDED")
POWER_STATES = {
0: "NO STATE",