Skip to content
This repository was archived by the owner on Aug 19, 2024. It is now read-only.
Open
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
2 changes: 2 additions & 0 deletions redash/query_runner/snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
except ImportError:
enabled = False

from redash import __version__
from redash.query_runner import BaseQueryRunner, register
from redash.query_runner import (
TYPE_STRING,
Expand Down Expand Up @@ -129,6 +130,7 @@ def _get_connection(self):
account=account,
region=region,
host=host,
application="Redash/{} (Snowflake)".format(__version__.split("-")[0]),
)

return connection
Expand Down