From 46c0024a343f7cbb17353c2c2f3158de55300b0c Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Wed, 1 Feb 2012 15:49:06 -0800 Subject: [PATCH] bug 13362: fix error message in StorageManagerImpl.java --- server/src/com/cloud/storage/StorageManagerImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/com/cloud/storage/StorageManagerImpl.java b/server/src/com/cloud/storage/StorageManagerImpl.java index 9a69e11be30..ecf63001080 100755 --- a/server/src/com/cloud/storage/StorageManagerImpl.java +++ b/server/src/com/cloud/storage/StorageManagerImpl.java @@ -1534,10 +1534,10 @@ public class StorageManagerImpl implements StorageManager, StorageService, Manag _storagePoolDao.expunge(pool.getId()); String msg = ""; if (answer != null) { - msg = "Can not create strorage pool through host " + hostId + " due to " + answer.getDetails(); + msg = "Can not create storage pool through host " + hostId + " due to " + answer.getDetails(); s_logger.warn(msg); } else { - msg = "Can not create strorage pool through host " + hostId + " due to CreateStoragePoolCommand returns null"; + msg = "Can not create storage pool through host " + hostId + " due to CreateStoragePoolCommand returns null"; s_logger.warn(msg); } throw new CloudRuntimeException(msg);