Skip to content

Commit

Permalink
Disable get_attribute function validation in input replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-biava committed Jun 16, 2016
1 parent a1caea2 commit 251dfc6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ protected AbstractPropertyValue processGetInput(Map<String, PropertyDefinition>
String msg = String.format(
"Function <%s> detected for property <%s> while only <get_input> should be authorized.",
function.getFunction(), propertyName);
LOG.error(msg);
throw new ToscaException(msg);
LOG.warn(msg);
// throw new ToscaException(msg);
}
} else {
// Complex or List properties might contain other function as their values
Expand Down

0 comments on commit 251dfc6

Please sign in to comment.