You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2016/11/23 07:57:05 UTC

[1/2] git commit: updated refs/heads/4.9 to 072af7a

Repository: cloudstack
Updated Branches:
  refs/heads/4.9 bdc806e31 -> 072af7a67


CLOUDSTACK-9489: the new config vars that are added do not goto DB if values are set to NULL, removing this check so the entries in DB are made with NULL values


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

Branch: refs/heads/4.9
Commit: a39cc61fc61a52b5d57e963a9a6a2d6f0e951c28
Parents: a661a11
Author: Abhinandan Prateek <ab...@shapeblue.com>
Authored: Fri Sep 23 10:58:11 2016 +0530
Committer: Abhinandan Prateek <ab...@shapeblue.com>
Committed: Fri Sep 23 10:58:11 2016 +0530

----------------------------------------------------------------------
 .../cloudstack/framework/config/dao/ConfigurationDaoImpl.java       | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a39cc61f/framework/config/src/org/apache/cloudstack/framework/config/dao/ConfigurationDaoImpl.java
----------------------------------------------------------------------
diff --git a/framework/config/src/org/apache/cloudstack/framework/config/dao/ConfigurationDaoImpl.java b/framework/config/src/org/apache/cloudstack/framework/config/dao/ConfigurationDaoImpl.java
index fc44c8b..4e7b127 100644
--- a/framework/config/src/org/apache/cloudstack/framework/config/dao/ConfigurationDaoImpl.java
+++ b/framework/config/src/org/apache/cloudstack/framework/config/dao/ConfigurationDaoImpl.java
@@ -90,7 +90,6 @@ public class ConfigurationDaoImpl extends GenericDaoBase<ConfigurationVO, String
                 configurations = listIncludingRemovedBy(sc);
 
                 for (ConfigurationVO config : configurations) {
-                    if (config.getValue() != null)
                         _configs.put(config.getName(), config.getValue());
                 }
             }


[2/2] git commit: updated refs/heads/4.9 to 072af7a

Posted by bh...@apache.org.
Merge pull request #1684 from shapeblue/cloudstack-9489

CLOUDSTACK-9489: the new config vars that are added do not goto DB if values are set to NULL, removing this check so the entries in DB are made with NULL values

* pr/1684:
  CLOUDSTACK-9489: the new config vars that are added do not goto DB if values are set to NULL, removing this check so the entries in DB are made with NULL values

Signed-off-by: Rohit Yadav <ro...@shapeblue.com>


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

Branch: refs/heads/4.9
Commit: 072af7a6771d2feb571ab37db70451296d2256f3
Parents: bdc806e a39cc61
Author: Rohit Yadav <ro...@shapeblue.com>
Authored: Wed Nov 23 13:18:55 2016 +0530
Committer: Rohit Yadav <ro...@shapeblue.com>
Committed: Wed Nov 23 13:18:55 2016 +0530

----------------------------------------------------------------------
 .../cloudstack/framework/config/dao/ConfigurationDaoImpl.java       | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------