Fix upload url arg name. 34/125434/2
authorandre.schmid <andre.schmid@est.tech>
Wed, 27 Oct 2021 18:04:29 +0000 (19:04 +0100)
committerAjith Sreekumar <ajith.sreekumar@bell.ca>
Mon, 1 Nov 2021 10:12:10 +0000 (10:12 +0000)
The current argument name for the upload-url is USERID,
changing to UPLOAD_URL.

Issue-ID: POLICY-3797
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Change-Id: I59ae27f6a3908c98d897b586668ae7b921366544

gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java

index 7487fa0..0c8c648 100644 (file)
@@ -102,7 +102,7 @@ public class ApexEditorParameterParser {
                 .longOpt("upload-url")
                 .desc("the URL to use for uploads. Default value is null")
                 .hasArg()
-                .argName("USERID")
+                .argName("UPLOAD_URL")
                 .required(false)
                 .type(String.class)
                 .build()