Github user ahgittin commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/705#discussion_r33120641
--- Diff:
software/base/src/main/java/brooklyn/entity/software/StaticSensor.java ---
@@ -36,9 +43,17 @@ public StaticSensor(ConfigBag params) {
value = params.get(STATIC_VALUE);
}
+ @SuppressWarnings("unchecked")
@Override
public void apply(EntityLocal entity) {
super.apply(entity);
- entity.setAttribute(sensor, (T) TypeCoercions.coerce(value,
sensor.getType()));
+
+ Maybe<T> v =
Tasks.resolving(value).as((Class<T>)sensor.getType()).timeout(Duration.millis(200)).getMaybe();
--- End diff --
100% agree re arbitrary numbers in code. i've replace them with defined
constants whose name and javadoc give a bit of reasoning behind the
arbitrariness. lemme know if you think it's an improvement @neykov .
---
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.
---