mirror of https://github.com/dapr/cli.git
use non-deprecated flags in List operation (#1478)
Signed-off-by: yaron2 <schneider.yaron@live.com>
This commit is contained in:
parent
c3f0fb2472
commit
953c4a2a3f
|
|
@ -105,9 +105,9 @@ func List() ([]ListOutput, error) {
|
|||
enableMetrics = true
|
||||
}
|
||||
|
||||
maxRequestBodySize := getIntArg(argumentsMap, "--dapr-http-max-request-size", runtime.DefaultMaxRequestBodySize)
|
||||
maxRequestBodySize := getIntArg(argumentsMap, "http-max-request-size", runtime.DefaultMaxRequestBodySize)
|
||||
|
||||
httpReadBufferSize := getIntArg(argumentsMap, "--dapr-http-read-buffer-size", runtime.DefaultReadBufferSize)
|
||||
httpReadBufferSize := getIntArg(argumentsMap, "http-read-buffer-size", runtime.DefaultReadBufferSize)
|
||||
|
||||
appID := argumentsMap["--app-id"]
|
||||
appCmd := ""
|
||||
|
|
|
|||
Loading…
Reference in New Issue