Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit f9d5806

Browse files
committed
Add missing option to stream deploy command
- Fixes #5161
1 parent 4854f55 commit f9d5806

File tree

1 file changed

+1
-1
lines changed
  • spring-cloud-dataflow-shell-core/src/main/java/org/springframework/cloud/dataflow/shell/command

1 file changed

+1
-1
lines changed

spring-cloud-dataflow-shell-core/src/main/java/org/springframework/cloud/dataflow/shell/command/StreamCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ private Availability availabilityFor(RoleType roleType, OpsType opsType) {
137137
@ShellMethodAvailability("availableWithDeployRole")
138138
public String deployStream(
139139
@ShellOption(value = { "", "--name" }, help = "the name of the stream to deploy", valueProvider = StreamNameValueProvider.class) String name,
140-
@ShellOption(help = "the properties for this deployment", defaultValue = ShellOption.NULL) String deploymentProperties,
140+
@ShellOption(value = "--properties", help = "the properties for this deployment", defaultValue = ShellOption.NULL) String deploymentProperties,
141141
@ShellOption(value = "--propertiesFile", help = "the properties for this deployment (as a File)", defaultValue = ShellOption.NULL) File propertiesFile,
142142
@ShellOption(value = "--packageVersion", help = "the package version of the package to deploy. Default is 1.0.0", defaultValue = "1.0.0") String packageVersion,
143143
@ShellOption(value = "--platformName", help = "the name of the target platform to deploy to", defaultValue = ShellOption.NULL) String platformName,

0 commit comments

Comments
 (0)