summaryrefslogtreecommitdiffstats
path: root/commands/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/server.go')
-rw-r--r--commands/server.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/commands/server.go b/commands/server.go
index 1747e17ab..8db6fa918 100644
--- a/commands/server.go
+++ b/commands/server.go
@@ -41,8 +41,6 @@ import (
type serverCmd struct {
// Can be used to stop the server. Useful in tests
stop <-chan bool
- // Can be used to receive notification about when the server is started. Useful in tests.
- started chan<- bool
disableLiveReload bool
navigateToChanged bool
@@ -60,11 +58,11 @@ type serverCmd struct {
}
func newServerCmd() *serverCmd {
- return newServerCmdSignaled(nil, nil)
+ return newServerCmdSignaled(nil)
}
-func newServerCmdSignaled(stop <-chan bool, started chan<- bool) *serverCmd {
- cc := &serverCmd{stop: stop, started: started}
+func newServerCmdSignaled(stop <-chan bool) *serverCmd {
+ cc := &serverCmd{stop: stop}
cc.baseBuilderCmd = newBuilderCmd(&cobra.Command{
Use: "server",
@@ -400,10 +398,6 @@ func (c *commandeer) serve(s *serverCmd) error {
}()
}
- if s.started != nil {
- s.started <- true
- }
-
jww.FEEDBACK.Println("Press Ctrl+C to stop")
if s.stop != nil {