Skip to content

Commit

Permalink
fixed format
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Mar 10, 2024
1 parent 570307b commit e2c9dab
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions redash/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
STATSD_USE_TAGS = parse_boolean(os.environ.get("REDASH_STATSD_USE_TAGS", "false"))

# Connection settings for Redash's own database (where we store the queries, results, etc)
SQLALCHEMY_DATABASE_URI = os.environ.get(
"REDASH_DB_URL", os.environ.get("DB_URL", "postgresql:///postgres")
)
SQLALCHEMY_DATABASE_URI = os.environ.get("REDASH_DB_URL", os.environ.get("DB_URL", "postgresql:///postgres"))
SQLALCHEMY_MAX_OVERFLOW = int_or_none(os.environ.get("SQLALCHEMY_MAX_OVERFLOW"))
SQLALCHEMY_POOL_SIZE = int_or_none(os.environ.get("SQLALCHEMY_POOL_SIZE"))
SQLALCHEMY_DISABLE_POOL = parse_boolean(os.environ.get("SQLALCHEMY_DISABLE_POOL", "false"))
Expand Down

0 comments on commit e2c9dab

Please sign in to comment.