We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f0fb2 commit 953c4a2Copy full SHA for 953c4a2
pkg/standalone/list.go
@@ -105,9 +105,9 @@ func List() ([]ListOutput, error) {
105
enableMetrics = true
106
}
107
108
- maxRequestBodySize := getIntArg(argumentsMap, "--dapr-http-max-request-size", runtime.DefaultMaxRequestBodySize)
+ maxRequestBodySize := getIntArg(argumentsMap, "http-max-request-size", runtime.DefaultMaxRequestBodySize)
109
110
- httpReadBufferSize := getIntArg(argumentsMap, "--dapr-http-read-buffer-size", runtime.DefaultReadBufferSize)
+ httpReadBufferSize := getIntArg(argumentsMap, "http-read-buffer-size", runtime.DefaultReadBufferSize)
111
112
appID := argumentsMap["--app-id"]
113
appCmd := ""
0 commit comments