summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2020-10-22 09:27:11 -0500
committerMichael Merickel <michael@merickel.org>2020-10-22 09:27:11 -0500
commit25e093936d31dba3d5b042f842566729fb01668c (patch)
treedb90906172e96e99404b98c3795bf301d402a075
parent78e98a75e527f90d8d8f2a25f5cb3f26527e75b4 (diff)
downloadwaitress-connection-overflow-warning.tar.gz
-rw-r--r--src/waitress/server.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/waitress/server.py b/src/waitress/server.py
index 631780b..b37980e 100644
--- a/src/waitress/server.py
+++ b/src/waitress/server.py
@@ -305,8 +305,8 @@ class BaseWSGIServer(wasyncore.dispatcher):
):
self.in_connection_overflow = True
self.logger.warning(
- 'total open connections reached the connection limit, '
- 'no longer accepting new connections'
+ "total open connections reached the connection limit, "
+ "no longer accepting new connections"
)
elif (
self.in_connection_overflow
@@ -314,8 +314,8 @@ class BaseWSGIServer(wasyncore.dispatcher):
):
self.in_connection_overflow = False
self.logger.info(
- 'total open connections dropped below the connection limit, '
- 'listening again'
+ "total open connections dropped below the connection limit, "
+ "listening again"
)
return not self.in_connection_overflow
return False