[31/45] incubator-airflow git commit: [AIRFLOW-938] Use test for True in task_stats queries

2017-03-12 Thread bolke
[AIRFLOW-938] Use test for True in task_stats queries Fix a bug with the task_stats query on postgres which doesn't support == 1. https://issues.apache.org/jira/browse/AIRFLOW-938 I've seen the other PR but I'll try to see if this method works because I believe `__eq__(True)` is just `== True`,

[15/28] incubator-airflow git commit: [AIRFLOW-938] Use test for True in task_stats queries

2017-03-12 Thread bolke
[AIRFLOW-938] Use test for True in task_stats queries Fix a bug with the task_stats query on postgres which doesn't support == 1. https://issues.apache.org/jira/browse/AIRFLOW-938 I've seen the other PR but I'll try to see if this method works because I believe `__eq__(True)` is just `== True`,

incubator-airflow git commit: [AIRFLOW-938] Use test for True in task_stats queries

2017-03-03 Thread davydov
Repository: incubator-airflow Updated Branches: refs/heads/master ae44dddcb -> 7764c75a7 [AIRFLOW-938] Use test for True in task_stats queries Fix a bug with the task_stats query on postgres which doesn't support == 1. https://issues.apache.org/jira/browse/AIRFLOW-938 I've seen the other PR