mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-15 01:44:24 +00:00
parent
5f52fd3e48
commit
27330065f2
@ -315,7 +315,7 @@ func (app *App) handleWS(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
connections := atomic.AddInt64(app.connections, 1)
|
||||
if int64(app.options.MaxConnection) != 0 {
|
||||
if connections >= int64(app.options.MaxConnection) {
|
||||
if connections > int64(app.options.MaxConnection) {
|
||||
log.Printf("Reached max connection: %d", app.options.MaxConnection)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user