Skip to content

Commit 63fbd16

Browse files
committed
CLOUDSTACK-7219 log warning when config item is missing from scope
1 parent 08b9a96 commit 63fbd16

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

server/src/com/cloud/server/ManagementServerImpl.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1706,6 +1706,8 @@ public Pair<List<? extends Configuration>, Integer> searchForConfigurations(List
17061706
if (configVo != null) {
17071707
configVo.setValue(_configDepot.get(param.getName()).valueIn(id).toString());
17081708
configVOList.add(configVo);
1709+
} else {
1710+
s_logger.warn("configuration item " + param.getName() + " not found in " + scope);
17091711
}
17101712
}
17111713

0 commit comments

Comments
 (0)