When I use cloudify(2.7) to deploy an application,it includs two services(e.g. service A dependsOn service B),here is the app-application.groovy
application {
name "app"
service {
name = "B"
}
service {
name = "A"
dependsOn = [ "B" ]
}
}
when the service B has 2 instances,one of the instances of service B is available,the service A begin to invoke the start event,but the service A dependsOn all instance of service B, Does it have some configuration to solve it ?