Github user ahgittin commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/480#discussion_r103505398
--- Diff:
core/src/main/java/org/apache/brooklyn/util/core/task/ValueResolver.java ---
@@ -512,6 +559,24 @@ public Object call() throws Exception {
}
}
+ protected Maybe<T> execImmediate(ExecutionContext exec, Object
immediateSupplierOrImmediateTask) {
+ Maybe<T> result;
+ try {
+ result = exec.getImmediately(immediateSupplierOrImmediateTask);
+ } catch (ImmediateSupplier.ImmediateUnsupportedException e) {
+ return null;
--- End diff --
+1
---
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.
---