This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author oren
Recipients oren, vinay.sajip
Date 2018-07-11.17:18:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531329485.65.0.56676864532.issue34086@psf.upfronthosting.co.za>
In-reply-to
Content
The code that was causing this problem looked something like:

--
def emit(self, record):
  ...
  response = requests.post(...)
  if not response.ok:
     self.handleError(record)
  ...
--

In this case, something does apparently go wrong, but it doesn't actually involve an exception.

I assume that I'm not the only person in the world dealing with a code base where handleError was misused like this.

Here's some evidence that this is true: https://www.programcreek.com/python/example/619/logging.Handler (search for handleError in the page)
History
Date User Action Args
2018-07-11 17:18:05orensetrecipients: + oren, vinay.sajip
2018-07-11 17:18:05orensetmessageid: <1531329485.65.0.56676864532.issue34086@psf.upfronthosting.co.za>
2018-07-11 17:18:05orenlinkissue34086 messages
2018-07-11 17:18:05orencreate