You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/05/08 11:13:20 UTC

git commit: updated refs/heads/4.4 to 882bf07

Repository: cloudstack
Updated Branches:
  refs/heads/4.4 a3825f126 -> 882bf079f


CLOUDSTACK-3272 Fixing NullPointerException for alerts

Signed-off-by: Daan Hoogland <da...@onecht.net>


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

Branch: refs/heads/4.4
Commit: 882bf079fa1886c9feab0948066a02c1cb6cd86a
Parents: a3825f1
Author: sonal.ojha <so...@sungard.com>
Authored: Thu May 8 12:12:02 2014 +0530
Committer: Daan Hoogland <da...@onecht.net>
Committed: Thu May 8 11:13:05 2014 +0200

----------------------------------------------------------------------
 server/src/com/cloud/event/AlertGenerator.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/882bf079/server/src/com/cloud/event/AlertGenerator.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/event/AlertGenerator.java b/server/src/com/cloud/event/AlertGenerator.java
index 5982eea..fab24f4 100644
--- a/server/src/com/cloud/event/AlertGenerator.java
+++ b/server/src/com/cloud/event/AlertGenerator.java
@@ -59,6 +59,7 @@ public class AlertGenerator {
     void init() {
         s_dcDao = dcDao;
         s_podDao = podDao;
+        s_configDao = configDao;
     }
 
     public static void publishAlertOnEventBus(String alertType, long dataCenterId, Long podId, String subject, String body) {