Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/824#discussion_r139185879
--- Diff:
software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessImpl.java
---
@@ -18,20 +18,40 @@
*/
package org.apache.brooklyn.entity.software.base;
+import org.apache.brooklyn.api.sensor.AttributeSensor;
+import
org.apache.brooklyn.core.entity.lifecycle.ServiceStateLogic.ServiceNotUpLogic;
+import org.apache.brooklyn.core.sensor.Sensors;
public class VanillaSoftwareProcessImpl extends SoftwareProcessImpl
implements VanillaSoftwareProcess {
+
+ AttributeSensor<Boolean> SERVICE_LAUNCHED =
Sensors.newBooleanSensor("service.process.isLaunched",
--- End diff --
This should be deleted.
---