[AIRFLOW-238] Make compatible with flask-admin 1.4.1

The new flask-admin==1.4.1 release on 2016-06-13 breaks the Airflow
release currently in Pypi (1.7.1.2). This fixes the edge case triggered
by this new release.

* Closes #1588 on github
This commit is contained in:
Maxime Beauchemin 2016-06-14 12:22:05 +02:00 коммит произвёл Bolke de Bruin
Родитель a599167c43
Коммит 54b361d2a1
3 изменённых файлов: 9 добавлений и 13 удалений

Просмотреть файл

@ -20,7 +20,7 @@ in their PYTHONPATH. airflow_login should be based off the
`airflow.www.login`
"""
from builtins import object
__version__ = "1.7.1.2"
__version__ = "1.7.1.3"
import logging
import os

Просмотреть файл

@ -106,14 +106,9 @@ def dag_link(v, c, m, p):
'<a href="{url}">{m.dag_id}</a>'.format(**locals()))
def log_link(v, c, m, p):
url = url_for(
'airflow.log',
dag_id=m.dag_id,
task_id=m.task_id,
execution_date=m.execution_date.isoformat())
def log_url_formatter(v, c, m, p):
return Markup(
'<a href="{url}">'
'<a href="{m.log_url}">'
' <span class="glyphicon glyphicon-book" aria-hidden="true">'
'</span></a>').format(**locals())
@ -2156,7 +2151,8 @@ class TaskInstanceModelView(ModelViewOnly):
'queue', 'pool', 'operator', 'start_date', 'end_date')
named_filter_urls = True
column_formatters = dict(
log=log_link, task_id=task_instance_link,
log_url=log_url_formatter,
task_id=task_instance_link,
hostname=nobr_f,
state=state_f,
execution_date=datetime_f,
@ -2177,7 +2173,7 @@ class TaskInstanceModelView(ModelViewOnly):
'state', 'dag_id', 'task_id', 'execution_date', 'operator',
'start_date', 'end_date', 'duration', 'job_id', 'hostname',
'unixname', 'priority_weight', 'queue', 'queued_dttm', 'try_number',
'pool', 'log')
'pool', 'log_url')
can_delete = True
page_size = 500

Просмотреть файл

@ -8,7 +8,7 @@ import sys
logger = logging.getLogger(__name__)
# Kept manually in sync with airflow.__version__
version = '1.7.1.2'
version = '1.7.1.3'
class Tox(TestCommand):
@ -168,7 +168,7 @@ def do_setup():
'dill>=0.2.2, <0.3',
'python-daemon>=2.1.1, <2.2',
'flask>=0.10.1, <0.11',
'flask-admin>=1.4.0, <2.0.0',
'flask-admin==1.4.1',
'flask-cache>=0.13.1, <0.14',
'flask-login==0.2.11',
'future>=0.15.0, <0.16',