Skip to content

Commit

Permalink
Fix label name for reauth field in Docker Connection (#28974)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taragolis committed Jan 16, 2023
1 parent dc3a3c7 commit cd637c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion airflow/providers/docker/hooks/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ def get_connection_form_widgets() -> dict[str, Any]:
from wtforms import BooleanField, StringField

return {
"reauth": BooleanField(lazy_gettext("Disable SSL")),
"reauth": BooleanField(
lazy_gettext("Reauthenticate"),
description="Whether or not to refresh existing authentication on the Docker server.",
),
"email": StringField(lazy_gettext("Email"), widget=BS3TextFieldWidget()),
}

Expand Down

0 comments on commit cd637c2

Please sign in to comment.