Skip to content

Commit c6596a6

Browse files
authored
fix missing comma in config (#17)
this fixes "RenderTimeout" not getting set when customized
1 parent 79e907c commit c6596a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
type Config struct {
1212
LogLevelDebug bool `arg:"--logDebug,env:LOG_LEVEL_DEBUG" default:"false" help:"Debug log level active"`
1313
LogJsonOutput bool `arg:"--logJsonOutput,env:LOG_JSON_OUTPUT" default:"false" help:"Json log output"`
14-
RenderTimeoutInSeconds int `arg:"--renderTimeout env:RENDER_TIMEOUT" default:"30" help:"Render timeout in seconds"`
14+
RenderTimeoutInSeconds int `arg:"--renderTimeout,env:RENDER_TIMEOUT" default:"30" help:"Render timeout in seconds"`
1515
WorkerInstances int `arg:"--workerInstances,env:WORKER_INSTANCES" default:"30"`
1616

1717
Port int `arg:"env" default:"8000" help:"Server port"`

0 commit comments

Comments
 (0)