fix logic that tests for change in an existing registered service

reviewable/pr18780/r1
Steve Gargan 10 years ago
parent 0d7647d904
commit a8584ade95

@ -224,7 +224,7 @@ def add_service(module, service):
# there is no way to retreive the details of checks so if a check is present
# in the service it must be reregistered
if service.has_checks() or not(existing or existing == service):
if service.has_checks() or not existing or not existing == service:
service.register(consul_api)
# check that it registered correctly

Loading…
Cancel
Save