Skip to content

Commit

Permalink
use non-deprecated flags in List operation
Browse files Browse the repository at this point in the history
Signed-off-by: yaron2 <[email protected]>
  • Loading branch information
yaron2 committed Jan 22, 2025
1 parent c3f0fb2 commit 374b61d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/standalone/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 := ""
Expand Down

0 comments on commit 374b61d

Please sign in to comment.