tadeja commented on code in PR #50598: URL: https://github.com/apache/arrow/pull/50598#discussion_r3639355938
########## python/scripts/run_emscripten_tests.py: ########## @@ -31,9 +31,16 @@ from io import BytesIO from selenium import webdriver +from selenium.common.exceptions import TimeoutException class TemplateOverrider(http.server.SimpleHTTPRequestHandler): + def handle(self): + try: + super().handle() + except (BrokenPipeError, ConnectionResetError): Review Comment: Done, added comment about connection exceptions. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
