You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/09/10 17:31:33 UTC

[airflow] branch main updated: Fix typo in StandardTaskRunning log message (#18149)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 42c835f  Fix typo in StandardTaskRunning log message (#18149)
42c835f is described below

commit 42c835f2b729c429d046b091c844a8f7ab0fd5f8
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Fri Sep 10 11:31:15 2021 -0600

    Fix typo in StandardTaskRunning log message (#18149)
---
 airflow/task/task_runner/standard_task_runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/task/task_runner/standard_task_runner.py b/airflow/task/task_runner/standard_task_runner.py
index 15830d5..a72244e 100644
--- a/airflow/task/task_runner/standard_task_runner.py
+++ b/airflow/task/task_runner/standard_task_runner.py
@@ -86,7 +86,7 @@ class StandardTaskRunner(BaseTaskRunner):
                 return_code = 0
             except Exception:
                 self.log.exception(
-                    "Failed to execute job %s fo task %s",
+                    "Failed to execute job %s for task %s",
                     self._task_instance.job_id,
                     self._task_instance.task_id,
                 )