Skip to content

Commit

Permalink
Update message when Orchestrator is running in the External Container…
Browse files Browse the repository at this point in the history
… mode
  • Loading branch information
leszko committed Oct 3, 2024
1 parent de885a2 commit 25702d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/livepeer/starter/starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -1525,8 +1525,8 @@ func StartLivepeer(ctx context.Context, cfg LivepeerConfig) {
// if http addr is not provided, listen to all ifaces
// take the port to listen to from the service URI
*cfg.HttpAddr = defaultAddr(*cfg.HttpAddr, "", n.GetServiceURI().Port())
if !*cfg.Transcoder && n.OrchSecret == "" {
glog.Exit("Running an orchestrator requires an -orchSecret for standalone mode or -transcoder for orchestrator+transcoder mode")
if !*cfg.Transcoder && !*cfg.AIWorker && n.OrchSecret == "" {
glog.Info("Running an orchestrator in AI External Container mode")
}
} else if n.NodeType == core.TranscoderNode {
*cfg.CliAddr = defaultAddr(*cfg.CliAddr, "127.0.0.1", TranscoderCliPort)
Expand Down

0 comments on commit 25702d1

Please sign in to comment.