You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/17 23:10:14 UTC

[airflow-site] branch master updated: Remove duplicate Breeze description in blog post (#283)

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

kamilbregula pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new e7e5638  Remove duplicate Breeze description in blog post (#283)
e7e5638 is described below

commit e7e563824cd03ae31acfa273a38a1987e87b2148
Author: Ephraim Anierobi <sp...@gmail.com>
AuthorDate: Tue Aug 18 00:10:03 2020 +0100

    Remove duplicate Breeze description in blog post (#283)
---
 .../site/content/en/blog/apache-airflow-for-newcomers/index.md    | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/index.md b/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/index.md
index d945b79..5566da7 100644
--- a/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/index.md
+++ b/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/index.md
@@ -58,7 +58,7 @@ A task is said to be ready when its dependencies have been met. The dependencies
 necessary for the task to be executed. It should be noted that the scheduler won't trigger your tasks until
 the period it covers has ended. If a task's ``schedule_interval`` is ``@daily``, the scheduler triggers the task
 at the end of the day and not at the beginning. This is to ensure that the necessary data needed for the tasks
-are ready. It is also possible trigger tasks manually on the UI.
+are ready. It is also possible to trigger tasks manually on the UI.
 
 In the [Breeze environment](https://github.com/apache/airflow/blob/master/BREEZE.rst), the scheduler is started by running the command ``airflow scheduler``. It uses
 the configured production environment. The configuration can be specified in ``airflow.cfg``
@@ -128,12 +128,6 @@ Just like Operators, there are many predefined sensors in Airflow. These include
 
 A list of most of the available sensors can be found in this [module](https://airflow.apache.org/docs/stable/_api/airflow/contrib/sensors/index.html?highlight=sensors#module-airflow.contrib.sensors)
 
-### Breeze Environment
-The breeze environment is the development environment for Airflow where you can run tests, build images,
-build documentations and so many other things. There are excellent
-[documentation and video](https://github.com/apache/airflow/blob/master/BREEZE.rst) on Breeze environment.
-Please check them out.
-
 ### Contributing to Airflow
 Airflow is an open source project, everyone is welcome to contribute. It is easy to get started thanks
 to the excellent [documentation on how to get started](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst).