I have 2 applications that I start with I run brooklyn. The two apps are
specified as follows in a YAML file.
> services:
- type: com.abhishek.dropwizzard
id: X
- type: com.abhishek.nodejs
id: Y
I want my nodeJS app to come up after my drop wizard app has been started
successfully. In-order to setup that deployment dependency I add the
following to my YAML file.
- type: com.abhishek.nodejs
launch.latch:
$brooklyn:component("X").attributeWhenReady("service.process.isRunning")
This doesn't work I get an error saying Ignoring PDP attributes ....
Please advise on how can I fix this ?
Thanks,
A