googleapis / python-pubsub

Apache License 2.0
392 stars 206 forks source link

fix: Catch and surface BaseException() #1108

Closed mukund-ananthu closed 8 months ago

mukund-ananthu commented 8 months ago

Currently, the behavior of the library is to catch Exception() when encountered in the user provided callback, surface it to the calling code and shut down the client.

However, for BaseException() encountered in the user provided callback, the BaseException() is not surfaced to the calling code and the client is not shut down.

Make the behavior of the client when BaseException() is encountered consistent with the behavior of the client when Exception() is encountered.

Fixes #1107 🦕