Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EWT-1562 Upgrade: Fix Twitter menu links in the UI #91

Open
wants to merge 1 commit into
base: 2.2.5+twtr
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions airflow/security/kerberos.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,6 @@ def renew_from_kt(principal: Optional[str], keytab: str, exit_on_fail: bool = Tr
return subp.returncode

global NEED_KRB181_WORKAROUND
if NEED_KRB181_WORKAROUND is None:
NEED_KRB181_WORKAROUND = detect_conf_var()
if NEED_KRB181_WORKAROUND:
# (From: HUE-640). Kerberos clock have seconds level granularity. Make sure we
# renew the ticket after the initial valid time.
time.sleep(1.5)
ret = perform_krb181_workaround(principal)
if exit_on_fail and ret != 0:
sys.exit(ret)
else:
Expand Down
2 changes: 1 addition & 1 deletion airflow/www/extensions/init_appbuilder_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def init_appbuilder_links(app):
"""Add links to Docs menu in navbar"""
appbuilder = app.appbuilder
appbuilder.add_link(name="Documentation", label="Documentation", href=get_docs_url(), category="Docs")
appbuilder.add_link(name="Documentation", label="Documentation", href="http://go/aero", category="Docs")
appbuilder.add_link(
name="Documentation", label="Airflow Website", href='https://airflow.apache.org', category="Docs"
)
Expand Down