Skip to content

Commit

Permalink
Doesn't fatal on failing to connect to SS server
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeuw committed Oct 5, 2018
1 parent 3e42803 commit 22b290b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gq-server/gq-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func dispatchConnection(conn net.Conn, sta *gqserver.State) {
goSS := func() {
pair, err := makeSSPipe(conn, sta)
if err != nil {
log.Fatalf("Making connection to ss-server: %v\n", err)
log.Printf("Making connection to ss-server: %v\n", err)
}
go pair.remoteToServer()
go pair.serverToRemote()
Expand Down

0 comments on commit 22b290b

Please sign in to comment.