mirror of https://github.com/apache/cloudstack.git
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 <rohit.yadav@shapeblue.com>
This commit is contained in:
commit
072af7a677
|
|
@ -90,7 +90,6 @@ public class ConfigurationDaoImpl extends GenericDaoBase<ConfigurationVO, String
|
||||||
configurations = listIncludingRemovedBy(sc);
|
configurations = listIncludingRemovedBy(sc);
|
||||||
|
|
||||||
for (ConfigurationVO config : configurations) {
|
for (ConfigurationVO config : configurations) {
|
||||||
if (config.getValue() != null)
|
|
||||||
_configs.put(config.getName(), config.getValue());
|
_configs.put(config.getName(), config.getValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue