diff --git a/server/src/com/cloud/storage/snapshot/SnapshotManagerImpl.java b/server/src/com/cloud/storage/snapshot/SnapshotManagerImpl.java index fb9ec416401..ad09fbf6f0d 100755 --- a/server/src/com/cloud/storage/snapshot/SnapshotManagerImpl.java +++ b/server/src/com/cloud/storage/snapshot/SnapshotManagerImpl.java @@ -370,7 +370,7 @@ public class SnapshotManagerImpl implements SnapshotManager, SnapshotService, Ma } Long poolId = v.getPoolId(); if (poolId == null) { - throw new CloudRuntimeException("Volume: " + volumeId + " is empty, don't need to create a snapshot"); + throw new CloudRuntimeException("You cannot take a snapshot of a volume until it has been attached to an instance"); } VolumeVO volume = _volsDao.acquireInLockTable(volumeId, 10); if( volume == null ) {