Create execution log entry object for the provided execution status.
(status, timestamp=None)
| 93 | |
| 94 | |
| 95 | def _create_execution_log_entry(status, timestamp=None): |
| 96 | """ |
| 97 | Create execution log entry object for the provided execution status. |
| 98 | """ |
| 99 | return { |
| 100 | "timestamp": timestamp or date_utils.get_datetime_utc_now(), |
| 101 | "status": status, |
| 102 | } |
| 103 | |
| 104 | |
| 105 | def create_execution_object( |
no outgoing calls
no test coverage detected