Closed diranged closed 8 years ago
It looks like if we revert the github plugin itself and nothing else, the error goes away.
+# https://github.com/airbnb/airflow/issues/1303
+#
+# This is fixable by rolling back the github_enterprise_auth script to the
+# 1.7.0 version.
+RUN curl -o /src/airflow/airflow/contrib/auth/backends/github_enterprise_auth.py \
+ https://raw.githubusercontent.com/airbnb/airflow/1.7.0/airflow/contrib/auth/backends/github_enterprise_auth.py
+
Environment
-e git+https://github.com/airbnb/airflow.git@6581858#egg=airflow[celery,postgres,qds,password]
)Celery, Postgres, QDS, Password
cryptography, statsd, Flask-OAuthlib
Description of Issue
We have the following setup in our
airflow.cfg
file:We are passing in the following environment variables:
If we run off of
master
(the SHA1 shown above), then we get this failure when we start the webserver:If we run the same exact environment, but off of the
1.7.0
tag, we get it working just fine:Bug somewhere in master...
I havn't found where the bug is yet, but its clear that something changed in
master
after the1.7.0
tag to break the github oauth module..