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

fix(migration): Support non-alphanumeric passwords in alembic. #26094

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
pre-commit hooks
  • Loading branch information
Ramakrishnan S committed Apr 9, 2024
commit bcc8391fd7ce2f4450cfa31459c6e59e583e4e92
2 changes: 1 addition & 1 deletion superset/migrations/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"SQLite Database support for metadata databases will \
be removed in a future version of Superset."
)
escaped_uri = DATABASE_URI.replace('%', '%%')
escaped_uri = DATABASE_URI.replace("%", "%%")
config.set_main_option("sqlalchemy.url", escaped_uri)
target_metadata = Base.metadata # pylint: disable=no-member

Expand Down
Loading