X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/18def2a271e02fd64749fe650034f50d1b659e45..8adcf378579655c4653cbcdae92c9d9eec154ea8:/lib/boot/cmd.go diff --git a/lib/boot/cmd.go b/lib/boot/cmd.go index 373613bb35..001504e203 100644 --- a/lib/boot/cmd.go +++ b/lib/boot/cmd.go @@ -66,6 +66,7 @@ func (bcmd bootCommand) run(ctx context.Context, prog string, args []string, std flags.StringVar(&super.ClusterType, "type", "production", "cluster `type`: development, test, or production") flags.StringVar(&super.ListenHost, "listen-host", "localhost", "host name or interface address for service listeners") flags.StringVar(&super.ControllerAddr, "controller-address", ":0", "desired controller address, `host:port` or `:port`") + flags.BoolVar(&super.NoWorkbench1, "no-workbench1", false, "do not run workbench1") flags.BoolVar(&super.OwnTemporaryDatabase, "own-temporary-database", false, "bring up a postgres server and create a temporary database") timeout := flags.Duration("timeout", 0, "maximum time to wait for cluster to be ready") shutdown := flags.Bool("shutdown", false, "shut down when the cluster becomes ready") @@ -112,6 +113,7 @@ func (bcmd bootCommand) run(ctx context.Context, prog string, args []string, std // ensuing "context cancelled" error, though: // return nil to indicate successful startup. _ = super.Wait() + fmt.Fprintln(stderr, "PASS - all services booted successfully") return nil } }