diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/waitress/server.py | 8 |
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 |