ferruzzi commented on code in PR #32359:
URL: https://github.com/apache/airflow/pull/32359#discussion_r1253367684
##########
airflow/providers/snowflake/hooks/snowflake_sql_api.py:
##########
@@ -137,7 +137,10 @@ def execute_query(
conn_config = self._get_conn_params()
req_id = uuid.uuid4()
- url =
f"https://{conn_config['account']}.{conn_config['region']}.snowflakecomputing.com/api/v2/statements"
+ url = (
+ f"https://{conn_config['account']}.{conn_config['region']}"
+ f".snowflakecomputing.com/api/v2/statements"
+ )
Review Comment:
No, I'm just not sure why it passed before. It's 126 characters and should
have raised an issue for being too long, no? I can change it back since it
isn't raising any errors.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]