diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-10-27 19:04:29 +0100 |
---|---|---|
committer | Liam Fallon <liam.fallon@est.tech> | 2021-11-01 11:33:13 +0000 |
commit | 9020e3312245653651e32cec1f51be7366928bf3 (patch) | |
tree | 2918265927324fc4d7363c413b3e7296373f82b2 /gui-editors | |
parent | 039b52132eff507ed8bc305efacf13e6bde3cd8f (diff) |
Fix upload url arg name.9.0.0-ONAP
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
(cherry picked from commit 28d5047cecd111e380fe78d2d1d7e4756b78ed12)
Diffstat (limited to 'gui-editors')
-rw-r--r-- | gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java | 2 |
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() |