revamp some confusing log messages#40334
Merged
Merged
Conversation
potiuk
approved these changes
Jun 19, 2024
Member
|
Fantastic |
This was referenced Jun 19, 2024
uranusjr
reviewed
Jun 20, 2024
uranusjr
reviewed
Jun 20, 2024
hussein-awala
approved these changes
Jun 20, 2024
Dev-iL
reviewed
Jun 23, 2024
potiuk
approved these changes
Jun 30, 2024
utkarsharma2
pushed a commit
that referenced
this pull request
Jul 2, 2024
(cherry picked from commit 34e7cab)
ephraimbuddy
pushed a commit
that referenced
this pull request
Jul 2, 2024
(cherry picked from commit 34e7cab)
vincbeck
reviewed
Jul 2, 2024
Comment on lines
+777
to
783
| "The executor reported that the task instance %s finished with state %s, but the task instance's state attribute is %s. " # noqa: RUF100, UP031, flynt | ||
| "Learn more: https://airflow.apache.org/docs/apache-airflow/stable/troubleshooting.html#task-state-changed-externally" | ||
| % (ti, state, ti.state) | ||
| ) | ||
| if info is not None: | ||
| msg += " Extra info: %s" % info # noqa: RUF100, UP031, flynt | ||
| self._task_context_logger.error(msg, ti, state, ti.state, info, ti=ti) |
Contributor
There was a problem hiding this comment.
This introduced a bug. You are formatting the text twice, one line 779, and then again in self._task_context_logger.error. Fix here: #40563
romsharon98
pushed a commit
to romsharon98/airflow
that referenced
this pull request
Jul 26, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related: #39543, #40141