Skip to content

Commit

Permalink
Merge pull request #1096 from AntoineAugusti/patch-2
Browse files Browse the repository at this point in the history
Fix typo in env variable VERSION_CHECK
  • Loading branch information
arikfr committed Jun 7, 2016
2 parents cd06d27 + 68dc3b0 commit daa6c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def all_settings():
# Features:
FEATURE_ALLOW_ALL_TO_EDIT_QUERIES = parse_boolean(os.environ.get("REDASH_FEATURE_ALLOW_ALL_TO_EDIT", "true"))
FEATURE_TABLES_PERMISSIONS = parse_boolean(os.environ.get("REDASH_FEATURE_TABLES_PERMISSIONS", "false"))
VERSION_CHECK = parse_boolean(os.environ.get("REDASH_VERSION_CEHCK", "true"))
VERSION_CHECK = parse_boolean(os.environ.get("REDASH_VERSION_CHECK", "true"))

# BigQuery
BIGQUERY_HTTP_TIMEOUT = int(os.environ.get("REDASH_BIGQUERY_HTTP_TIMEOUT", "600"))
Expand Down

0 comments on commit daa6c1c

Please sign in to comment.