From 5160023cc4edc123024911b95c85d146219f1402 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 13 Jan 2021 16:43:41 -0500 Subject: [PATCH] Update nodedeploy error message We can't tell which argument was omitted, so warn that both are needed. --- confluent_client/bin/nodedeploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodedeploy b/confluent_client/bin/nodedeploy index 63629613..d68f27f0 100755 --- a/confluent_client/bin/nodedeploy +++ b/confluent_client/bin/nodedeploy @@ -79,7 +79,7 @@ def main(args): sys.stderr.write('-n is a required argument currently to perform an install, optionally with -p\n') return 1 if not args.profile and args.network: - sys.stderr.write('profile is a required argument to request a network deployment\n') + sys.stderr.write('Both noderange and a profile name are required arguments to request a network deployment\n') return 1 if extra: sys.stderr.write('Unrecognized arguments: ' + repr(extra) + '\n')