You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2016/05/19 02:49:07 UTC

[1/2] incubator-airflow git commit: [AIRFLOW-127] Makes filter_by_owner aware of multi-owner DAG

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 20a536cc7 -> 959d1fe10


[AIRFLOW-127] Makes filter_by_owner aware of multi-owner DAG


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

Branch: refs/heads/master
Commit: 843a22f74c01612b1858c69b86d0eb5b1cc89a38
Parents: 4d85783
Author: Herv� Werner <he...@mfglabs.com>
Authored: Wed May 18 12:31:12 2016 +0200
Committer: Herv� Werner <he...@mfglabs.com>
Committed: Wed May 18 12:31:12 2016 +0200

----------------------------------------------------------------------
 airflow/www/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/843a22f7/airflow/www/views.py
----------------------------------------------------------------------
diff --git a/airflow/www/views.py b/airflow/www/views.py
index 6962115..b4d4cfa 100644
--- a/airflow/www/views.py
+++ b/airflow/www/views.py
@@ -1733,7 +1733,7 @@ class HomeView(AdminIndexView):
                 session.query(DM)
                     .filter(
                     ~DM.is_subdag, DM.is_active,
-                    DM.owners == current_user.username)
+                    DM.owners.like('%' + current_user.username + '%'))
                     .all()
             )
         else:


[2/2] incubator-airflow git commit: Merge branch '1508'

Posted by cr...@apache.org.
Merge branch '1508'


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

Branch: refs/heads/master
Commit: 959d1fe10022444809ea864860a60a3cf20765b5
Parents: 20a536c 843a22f
Author: Chris Riccomini <ch...@wepay.com>
Authored: Wed May 18 19:48:32 2016 -0700
Committer: Chris Riccomini <ch...@wepay.com>
Committed: Wed May 18 19:48:32 2016 -0700

----------------------------------------------------------------------
 airflow/www/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------