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/04 18:35:43 UTC

incubator-airflow git commit: [AIRFLOW-395] Remove trailing commas from resources in config

Repository: incubator-airflow
Updated Branches:
  refs/heads/master b9b5e1089 -> 16a182c0e


[AIRFLOW-395] Remove trailing commas from resources in config

Closes #1706 from aoen/ddavydov/fix_resources_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/16a182c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/16a182c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/16a182c0

Branch: refs/heads/master
Commit: 16a182c0eb7000a60e9905f3eb1a4ea089cbb685
Parents: b9b5e10
Author: Dan Davydov <da...@airbnb.com>
Authored: Thu Aug 4 11:35:39 2016 -0700
Committer: Dan Davydov <da...@airbnb.com>
Committed: Thu Aug 4 11:35:39 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/16a182c0/airflow/configuration.py
----------------------------------------------------------------------
diff --git a/airflow/configuration.py b/airflow/configuration.py
index 65b482c..cf1fe0d 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_gpu: 0
 
 
 [webserver]