Skip to content

Commit

Permalink
Improve wording
Browse files Browse the repository at this point in the history
  • Loading branch information
blorente committed Jun 24, 2019
1 parent ef07e30 commit ffccd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/pants/pantsd/pailgun_server.py
Expand Up @@ -298,7 +298,7 @@ def process_request_thread(self, request, client_address):
self.request_complete_callback()
except BrokenPipeError as e:
# The client has closed the connection, most likely from a SIGINT
self.logger.error("Request {} abruptly closed, probably beacuse the client crashed, with {}({})".format(request, type(e), e))
self.logger.error("Request {} abruptly closed with {}, probably because the client crashed or was sent a SIGINT.".format(request, type(e)))
except Exception as e:
# If that fails, (synchronously) handle the error with the error handler sans-fork.
try:
Expand Down

0 comments on commit ffccd8c

Please sign in to comment.