Repository: incubator-airflow
Updated Branches:
  refs/heads/master 7cb818bba -> 97a2393f6


[AIRFLOW-1722] Fix typo in scheduler autorestart output filename

Extra r in /tmp/airflow_scheduler_errors.txt has
been removed.

Closes #2693 from mschmo/AIRFLOW-1722


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/97a2393f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/97a2393f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/97a2393f

Branch: refs/heads/master
Commit: 97a2393f644ff438986843c04a47754a37ae0bc5
Parents: 7cb818b
Author: Matthew Schmoyer <[email protected]>
Authored: Wed Oct 18 21:41:01 2017 +0200
Committer: Bolke de Bruin <[email protected]>
Committed: Wed Oct 18 21:41:01 2017 +0200

----------------------------------------------------------------------
 airflow/bin/airflow_scheduler_autorestart.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/97a2393f/airflow/bin/airflow_scheduler_autorestart.sh
----------------------------------------------------------------------
diff --git a/airflow/bin/airflow_scheduler_autorestart.sh 
b/airflow/bin/airflow_scheduler_autorestart.sh
index a5f6fe7..910404d 100755
--- a/airflow/bin/airflow_scheduler_autorestart.sh
+++ b/airflow/bin/airflow_scheduler_autorestart.sh
@@ -14,6 +14,6 @@
 while echo "Running"; do
     airflow scheduler -n 5
     echo "Scheduler crashed with exit code $?.  Respawning.." >&2
-    date >> /tmp/airflow_scheduler_errrors.txt
+    date >> /tmp/airflow_scheduler_errors.txt
     sleep 1
 done

Reply via email to