fix logic that tests for change in an existing registered service

This commit is contained in:
Steve Gargan 2015-03-03 14:18:56 +00:00 committed by Matt Clay
parent a04bd291b4
commit 2728dc3fb8

View file

@ -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