fix logic that tests for change in an existing registered service
This commit is contained in:
parent
a04bd291b4
commit
2728dc3fb8
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue