kushagra391 commented on issue #17124:
URL: https://github.com/apache/airflow/issues/17124#issuecomment-884070878
found the issue, for some reason, this does not call callbacks on v2.x (but
worked fine v1.x)
```
class RWBatchOperator(AwsBatchOperator, AATBaseOperator):
pass
```
it works if I do
```
class RWBatchOperatorV2(AATBaseOperator, AwsBatchOperator):
pass
```
(AATBaseOperator has callbacks defined for on_success / on_failure)
--
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]