Hi, all! First, I wish I could add Sentry to Airflow.
Generally, in a Flask project I would do the steps below: # pip install raven[flask] from raven.contrib.flask import Sentry sentry = Sentry(app, dsn='your dsn') Is there any way I could wrap Airflow application with that? Second, Is there anyway I could change Airflow Celery settings? Let's say create my own queues, routers. Particularly, I'd like to change this: CELERY_ACCEPT_CONTENT = ['json', 'pickle'] to this: CELERY_ACCEPT_CONTENT = ['json',] Is there any side effect in disable pickle? Thanks in advance. -- Atenciosamente Arthur Alvim
