Repository: incubator-airflow Updated Branches: refs/heads/master 821ced78e -> b65dc43d2
[AIRFLOW-1206] Typos Closes #2294 from benrudolph/patch-1 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/b65dc43d Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/b65dc43d Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/b65dc43d Branch: refs/heads/master Commit: b65dc43d2edee8ae81f17a8d982aeabbc9d0ff43 Parents: 821ced7 Author: Ben Rudolph <[email protected]> Authored: Mon Mar 26 10:25:20 2018 +0200 Committer: Fokko Driesprong <[email protected]> Committed: Mon Mar 26 10:25:20 2018 +0200 ---------------------------------------------------------------------- airflow/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/b65dc43d/airflow/models.py ---------------------------------------------------------------------- diff --git a/airflow/models.py b/airflow/models.py index baf101f..010a150 100755 --- a/airflow/models.py +++ b/airflow/models.py @@ -2081,7 +2081,7 @@ class BaseOperator(LoggingMixin): Operators derived from this class should perform or trigger certain tasks synchronously (wait for completion). Example of operators could be an - operator the runs a Pig job (PigOperator), a sensor operator that + operator that runs a Pig job (PigOperator), a sensor operator that waits for a partition to land in Hive (HiveSensorOperator), or one that moves data from Hive to MySQL (Hive2MySqlOperator). Instances of these operators (tasks) target specific operations, running specific scripts, @@ -2175,7 +2175,7 @@ class BaseOperator(LoggingMixin): :type pool: str :param sla: time by which the job is expected to succeed. Note that this represents the ``timedelta`` after the period is closed. For - example if you set an SLA of 1 hour, the scheduler would send dan email + example if you set an SLA of 1 hour, the scheduler would send an email soon after 1:00AM on the ``2016-01-02`` if the ``2016-01-01`` instance has not succeeded yet. The scheduler pays special attention for jobs with an SLA and
