Skip to content

Commit

Permalink
chore: remove extra print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jyecusch committed May 13, 2021
1 parent 1c0d92c commit e7aeed7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 15 deletions.
4 changes: 0 additions & 4 deletions providers/aws/membrane.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,8 @@ func main() {
log.Fatalf("There was an error initialising the membrane server: %v", err)
}

println("starting server")
go (m.Start)()

println("wait for term signal")
// Wait for a terminate interrupt
<-term
println("stopping server")
m.Stop()
}
4 changes: 0 additions & 4 deletions providers/azure/membrane.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,8 @@ func main() {
log.Fatalf("There was an error initialising the membrane server: %v", err)
}

println("starting server")
go (m.Start)()

println("wait for term signal")
// Wait for a terminate interrupt
<-term
println("stopping server")
m.Stop()
}
3 changes: 0 additions & 3 deletions providers/do/membrane.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ func main() {
log.Fatalf("There was an error initialising the membrane server: %v", err)
}

println("starting membrane")
go (m.Start)()
println("wait for term signal")
// Wait for a terminate interrupt
<-term
println("stopping server")
m.Stop()
}
4 changes: 0 additions & 4 deletions providers/gcp/membrane.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,8 @@ func main() {
log.Fatalf("There was an error initialising the membrane server: %v", err)
}
// Start the Membrane server
println("starting server")
go (m.Start)()

println("wait for term signal")
// Wait for a terminate interrupt
<-term
println("stopping server")
m.Stop()
}

0 comments on commit e7aeed7

Please sign in to comment.