Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 96FD4200D1E for ; Wed, 18 Oct 2017 21:41:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9585B160BEA; Wed, 18 Oct 2017 19:41:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DB3561609DE for ; Wed, 18 Oct 2017 21:41:12 +0200 (CEST) Received: (qmail 42505 invoked by uid 500); 18 Oct 2017 19:41:12 -0000 Mailing-List: contact commits-help@airflow.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airflow.incubator.apache.org Delivered-To: mailing list commits@airflow.incubator.apache.org Received: (qmail 42496 invoked by uid 99); 18 Oct 2017 19:41:12 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2017 19:41:12 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 58F331A27E1 for ; Wed, 18 Oct 2017 19:41:11 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.222 X-Spam-Level: X-Spam-Status: No, score=-4.222 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id CoNJwhMduOGf for ; Wed, 18 Oct 2017 19:41:10 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 54A2C5F1D5 for ; Wed, 18 Oct 2017 19:41:09 +0000 (UTC) Received: (qmail 42480 invoked by uid 99); 18 Oct 2017 19:41:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2017 19:41:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 06284DFA41; Wed, 18 Oct 2017 19:41:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bolke@apache.org To: commits@airflow.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-airflow git commit: [AIRFLOW-1722] Fix typo in scheduler autorestart output filename Date: Wed, 18 Oct 2017 19:41:07 +0000 (UTC) archived-at: Wed, 18 Oct 2017 19:41:13 -0000 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 Authored: Wed Oct 18 21:41:01 2017 +0200 Committer: Bolke de Bruin 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