diff options
author | Michael Merickel <michael@merickel.org> | 2020-10-22 09:27:11 -0500 |
---|---|---|
committer | Michael Merickel <michael@merickel.org> | 2020-10-22 09:27:11 -0500 |
commit | 25e093936d31dba3d5b042f842566729fb01668c (patch) | |
tree | db90906172e96e99404b98c3795bf301d402a075 /src/waitress | |
parent | 78e98a75e527f90d8d8f2a25f5cb3f26527e75b4 (diff) | |
download | waitress-25e093936d31dba3d5b042f842566729fb01668c.tar.gz |
blackifyconnection-overflow-warning
Diffstat (limited to 'src/waitress')
-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 |