You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by da...@apache.org on 2016/08/05 03:59:52 UTC

incubator-airflow git commit: [AIRFLOW-395] Fix colon/equal signs typo for resources in default config

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 090f51816 -> c56793060


[AIRFLOW-395] Fix colon/equal signs typo for resources in default config

Closes #1708 from aoen/ddavydov/fix_colon_typo


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

Branch: refs/heads/master
Commit: c56793060663aff88c08e0e5ff5f87725e88f77a
Parents: 090f518
Author: Dan Davydov <da...@airbnb.com>
Authored: Thu Aug 4 20:59:20 2016 -0700
Committer: Dan Davydov <da...@airbnb.com>
Committed: Thu Aug 4 20:59:24 2016 -0700

----------------------------------------------------------------------
 airflow/configuration.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/c5679306/airflow/configuration.py
----------------------------------------------------------------------
diff --git a/airflow/configuration.py b/airflow/configuration.py
index cf1fe0d..9313366 100644
--- a/airflow/configuration.py
+++ b/airflow/configuration.py
@@ -264,10 +264,10 @@ dagbag_import_timeout = 30
 # The default owner assigned to each new operator, unless
 # provided explicitly or passed via `default_args`
 default_owner = Airflow
-default_cpus: 1
-default_ram: 512
-default_disk: 512
-default_gpu: 0
+default_cpus = 1
+default_ram = 512
+default_disk = 512
+default_gpus = 0
 
 
 [webserver]