You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It can cause problems when DatabaseException is being thrown from a multiprocessings process (e.g. while working with big data in ClickHouse in parallel), ForkingPickler complaining about the missing orig parameter. So I suggest to add orig into the super constructor, because orig is non-optional:
At the moment,
DatabaseException
constructor now looks like this:It can cause problems when
DatabaseException
is being thrown from amultiprocessing
s process (e.g. while working with big data in ClickHouse in parallel),ForkingPickler
complaining about the missingorig
parameter. So I suggest to addorig
into the super constructor, becauseorig
is non-optional:The text was updated successfully, but these errors were encountered: