Skip to content
This repository was archived by the owner on Aug 28, 2020. It is now read-only.

Commit 571928b

Browse files
committed
Merge pull request #154 from robertbasic/fix/issue153
Fix/issue153. Fixes #153
2 parents 8492ead + 0619fa6 commit 571928b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
### Changed
77

88
### Fixed
9+
- Correctly stop listening when multiple requests are active
910

1011
### Removed
1112

pugdebug/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __listen(self, socket_server):
8787
connection = PugdebugServerConnection(sock)
8888
is_valid = connection.init_connection()
8989

90-
if is_valid:
90+
if is_valid and self.wait_for_accept:
9191
self.new_connection_established_signal.emit(
9292
connection
9393
)

0 commit comments

Comments
 (0)