JCoder01 commented on issue #31104: URL: https://github.com/apache/airflow/issues/31104#issuecomment-1745884682
No #31110 fixes the issue where `pickle` or `dill` were part of the instance, and pickle can't pickle itself. This was internal to the operator. #28879 appears to be caused by trying to pickle something that can't be pickled, in the issue, it's a class with a `logging` instance. `logging` instances can't be pickled. In this case, the only way to fix it would probably be to implement `__get_state__` and `__set_state__` magic methods to handle the pickle/unpickle of the class. -- 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]
