-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #279 from airbnb/crypto_msg
Warning about Connections being stored in clear
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends 'airflow/model_list.html' %} | ||
|
||
{% block model_menu_bar %} | ||
{% if not admin_view.is_secure() %} | ||
<div class="alert alert-danger"><b>Warning:</b> Connection password are stored in clear until you install the Python "cryptography" library. Find the instructions on how to install it here: https://cryptography.io/en/latest/installation/</div> | ||
{% endif %} | ||
{{ super() }} | ||
{% endblock %} | ||
|