notify_db is considered to be empty if notify_db is None and neither of on_complete, on_success and on_failure have values.
(notify_db)
| 570 | |
| 571 | |
| 572 | def _is_notify_empty(notify_db): |
| 573 | """ |
| 574 | notify_db is considered to be empty if notify_db is None and neither |
| 575 | of on_complete, on_success and on_failure have values. |
| 576 | """ |
| 577 | if not notify_db: |
| 578 | return True |
| 579 | return not (notify_db.on_complete or notify_db.on_success or notify_db.on_failure) |
| 580 | |
| 581 | |
| 582 | def _is_notify_skipped(liveaction): |