From 8abda2fdd0e13ada6d70eabe8d6de81d2b93cffc Mon Sep 17 00:00:00 2001 From: alena Date: Wed, 13 Apr 2011 12:59:28 -0700 Subject: [PATCH] Changed description for Destroyed volume state. --- api/src/com/cloud/storage/Volume.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/com/cloud/storage/Volume.java b/api/src/com/cloud/storage/Volume.java index 9790746ef21..ca5424f33c1 100755 --- a/api/src/com/cloud/storage/Volume.java +++ b/api/src/com/cloud/storage/Volume.java @@ -33,7 +33,7 @@ public interface Volume extends ControlledEntity, BasedOn { enum State implements FiniteState { Allocated("The volume is allocated but has not been created yet."), Creating("The volume is being created. getPoolId() should reflect the pool where it is being created."), Ready( - "The volume is ready to be used."), Destroy("The volume is set to be destroyed but can be recovered."); + "The volume is ready to be used."), Destroy("The volume is destroyed, and can't be recovered."); String _description;