This repository has been archived by the owner. It is now read-only.
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
ARIA-298 test suite sometimes fails or freezes while all tests pass
- Loading branch information
Showing
4 changed files
with
58 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -102,6 +102,7 @@ def serve(): | ||
quiet=True, | ||
server=BottleServerAdapter) | ||
thread = threading.Thread(target=serve) | ||
thread.daemon = True | ||
thread.start() | ||
return thread | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -269,6 +269,7 @@ class ExceptionThread(Thread): | ||
def __init__(self, *args, **kwargs): | ||
Thread.__init__(self, *args, **kwargs) | ||
self.exception = None | ||
self.daemon = True | ||
|
||
def run(self): | ||
try: | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters