diff --git a/nomad/server.go b/nomad/server.go index f94e2d7c5..1c16f55d0 100644 --- a/nomad/server.go +++ b/nomad/server.go @@ -181,7 +181,6 @@ func NewServer(config *Config) (*Server, error) { // Initialize the RPC layer // TODO: TLS... - logger.Printf("[INFO] nomad: starting RPC layer") if err := s.setupRPC(nil); err != nil { s.Shutdown() logger.Printf("[ERR] nomad: failed to start RPC layer: %s", err) @@ -189,7 +188,6 @@ func NewServer(config *Config) (*Server, error) { } // Initialize the Raft server - logger.Printf("[INFO] nomad: starting Raft") if err := s.setupRaft(); err != nil { s.Shutdown() logger.Printf("[ERR] nomad: failed to start Raft: %s", err) @@ -197,7 +195,6 @@ func NewServer(config *Config) (*Server, error) { } // Initialize the wan Serf - logger.Printf("[INFO] nomad: starting serf WAN") s.serf, err = s.setupSerf(config.SerfConfig, s.eventCh, serfSnapshot) if err != nil { s.Shutdown() @@ -206,7 +203,6 @@ func NewServer(config *Config) (*Server, error) { } // Intialize the scheduling workers - logger.Printf("[INFO] nomad: starting workers") if err := s.setupWorkers(); err != nil { s.Shutdown() logger.Printf("[ERR] nomad: failed to start workers: %s", err) diff --git a/website/source/docs/agent/running.html.md b/website/source/docs/agent/running.html.md deleted file mode 100644 index 70d9d65c4..000000000 --- a/website/source/docs/agent/running.html.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -layout: "docs" -page_title: "Running and Stopping" -sidebar_current: "docs-agent-running" -description: |- - Learn about the the lifecycle of a Nomad agent, running and stopping. ---- - -# Running and Stopping - -TODO