From 301014f3b5615721083a0533ae9b46abd43fe012 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 20 Oct 2017 13:53:13 -0400 Subject: [PATCH] Fix nodediscover rescan Actually request that the server do rescan, rather than queueing it up and failing to transmit. --- confluent_client/bin/nodediscover | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodediscover b/confluent_client/bin/nodediscover index 318699bc..49706451 100755 --- a/confluent_client/bin/nodediscover +++ b/confluent_client/bin/nodediscover @@ -262,7 +262,7 @@ def main(): if args[0] == 'assign': assign_discovery(options, session) if args[0] == 'rescan': - session.update('/discovery/rescan', {'rescan': 'start'}) + list(session.update('/discovery/rescan', {'rescan': 'start'})) print("Rescan initiated")