uranusjr commented on code in PR #27851:
URL: https://github.com/apache/airflow/pull/27851#discussion_r1030025505
##########
airflow/utils/cli_action_loggers.py:
##########
@@ -121,8 +123,17 @@ def default_action_log(sub_command, user, task_id, dag_id,
execution_date, host_
}
],
)
- except Exception as error:
- logging.warning("Failed to log action with %s", error)
+ except (OperationalError, ProgrammingError) as e:
+ expected = [
+ '"log" does not exist', # postgres
+ "no such table", # sqlite
+ "log' doesn't exist", # mysql
+ "Invalid object name 'log'", # mssql
+ ]
+ if getattr(e, "args", None) and not any(x in e.args[0] for x in
expected):
Review Comment:
No that’s not guaranteed. `args` is just whatever init args the exception
receives, so
```pycon
>>> e = Exception()
>>> e.args
()
```
--
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]