jrmccluskey commented on code in PR #32276:
URL: https://github.com/apache/beam/pull/32276#discussion_r1727126763
##########
sdks/go/cmd/prism/prism.go:
##########
@@ -30,27 +30,34 @@ import (
)
var (
- jobPort = flag.Int("job_port", 8073, "specify the job
management service port")
- webPort = flag.Int("web_port", 8074, "specify the web ui
port")
- jobManagerEndpoint = flag.String("jm_override", "", "set to only stand
up a web ui that refers to a seperate JobManagement endpoint")
- serveHTTP = flag.Bool("serve_http", true, "enable or disable
the web ui")
+ jobPort = flag.Int("job_port", 8073, "specify the job
management service port")
+ webPort = flag.Int("web_port", 8074, "specify the web ui
port")
+ jobManagerEndpoint = flag.String("jm_override", "", "set to only stand
up a web ui that refers to a seperate JobManagement endpoint")
+ serveHTTP = flag.Bool("serve_http", true, "enable or disable
the web ui")
+ idleShutdownTimeout = flag.Duration("idle_shutdown_timeout", -1,
"duration that prism will wait for a new job before shutting itself down.
Negative durations disable auto shutdown infinit wait. Defaults to never
shutting down.")
Review Comment:
```suggestion
idleShutdownTimeout = flag.Duration("idle_shutdown_timeout", -1,
"duration that prism will wait for a new job before shutting itself down.
Negative durations disable auto shutdown. Defaults to never shutting down.")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]