Github user neykov commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/521#discussion_r100394340
--- Diff:
camp/camp-brooklyn/src/main/java/org/apache/brooklyn/camp/brooklyn/spi/dsl/DslDeferredFunctionCall.java
---
@@ -62,7 +62,7 @@ public DslDeferredFunctionCall(Object o, String fn,
List<Object> args) {
@Override
public Task<Object> newTask() {
return Tasks.builder()
- .displayName("Deferred function call " + object + "." +
fnName + "(" + toString(args) + ")")
+ .displayName("Deferred function call " + object + "." +
fnName + args + ")")
--- End diff --
Is `args` guaranteed to be non-null here? You'd get `fnNamenull` if not.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---