You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by fr...@apache.org on 2013/07/30 00:19:36 UTC

git commit: updated refs/heads/4.2 to 6a21a71

Updated Branches:
  refs/heads/4.2 b79977d32 -> 6a21a71e7


CLOUDSTACK-3918
com.cloud.ucs.manager.UcsManagerImpl cannot parse default config


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6a21a71e
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6a21a71e
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6a21a71e

Branch: refs/heads/4.2
Commit: 6a21a71e712cd4da3046dab525424da693f7b8df
Parents: b79977d
Author: frank <fr...@citrix.com>
Authored: Mon Jul 29 15:28:53 2013 -0700
Committer: frank <fr...@citrix.com>
Committed: Mon Jul 29 15:29:10 2013 -0700

----------------------------------------------------------------------
 .../ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java          | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6a21a71e/plugins/hypervisors/ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java b/plugins/hypervisors/ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java
index df874cb..fdc09d3 100755
--- a/plugins/hypervisors/ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java
+++ b/plugins/hypervisors/ucs/src/com/cloud/ucs/manager/UcsManagerImpl.java
@@ -175,7 +175,11 @@ public class UcsManagerImpl implements UcsManager {
 
     @Override
     public boolean start() {
-    	syncBladeInterval = Integer.valueOf(configDao.getValue(Config.UCSSyncBladeInterval.key()));
+        try {
+            syncBladeInterval = Integer.valueOf(configDao.getValue(Config.UCSSyncBladeInterval.key()));
+        } catch (NumberFormatException e) {
+            syncBladeInterval = 600;
+        }
     	syncBladesExecutor = Executors.newScheduledThreadPool(1, new NamedThreadFactory("UCS-SyncBlades"));
     	syncBladesExecutor.scheduleAtFixedRate(new SyncBladesThread(), syncBladeInterval, syncBladeInterval, TimeUnit.SECONDS);
         return true;