aboutsummaryrefslogtreecommitdiffstats
path: root/gui-editors
diff options
context:
space:
mode:
authorandre.schmid <andre.schmid@est.tech>2021-10-27 19:04:29 +0100
committerAjith Sreekumar <ajith.sreekumar@bell.ca>2021-11-01 10:12:10 +0000
commit28d5047cecd111e380fe78d2d1d7e4756b78ed12 (patch)
treee8d8cf4287276452987f9a447ba960c7c6079b26 /gui-editors
parentc989419a1f8edeed0da94106162668dc023465b7 (diff)
Fix upload url arg name.
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
Diffstat (limited to 'gui-editors')
-rw-r--r--gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java
index 7487fa0..0c8c648 100644
--- a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java
+++ b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java
@@ -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()