gardnerdev commented on issue #13818:
URL: https://github.com/apache/airflow/issues/13818#issuecomment-765523119
1. Firstly check, if LDAP connection is working.
2. Secondly, try to rebuild image. It's working on my end:
```
FROM apache/airflow:2.0.0-python3.7
USER root
RUN apt-get update --fix-missing
RUN apt-get install -y build-essential python3-dev python2.7-dev \
libldap2-dev libsasl2-dev slapd ldap-utils tox \
lcov valgrind && apt-get autoremove -yqq --purge \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip install python-ldap
USER 50000
```
@BrainMonkey
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]