Skip to content

Commit

Permalink
don't exit on failed connection
Browse files Browse the repository at this point in the history
  • Loading branch information
gari authored and iSchluff committed Jan 7, 2022
1 parent 75730b5 commit 0e98847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srt/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (s *ServerImpl) listenAt(ctx context.Context, host string, port uint16) err
return
default:
}
log.Fatalln("accept failed", err)
log.Println("accept failed", err)
}
go s.Handle(ctx, sock, addr)
}
Expand Down

0 comments on commit 0e98847

Please sign in to comment.