The following example has multiple ServiceDefinition with the same name but different tags, currently this scenario doesnt work and the ServiceBrokerActor at line 70 throws a NoSuchElement exception since the lookup is by name and not by id. In most cases this works because id == name but if name and id differ it was broken; This PR fixes it.
The following example has multiple
ServiceDefinition
with the same name but different tags, currently this scenario doesnt work and theServiceBrokerActor
at line 70 throws aNoSuchElement
exception since the lookup is by name and not by id. In most cases this works because id == name but if name and id differ it was broken; This PR fixes it.