Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@ services:
TASK_API_ENFORCE_HTTPS: ${TASK_API_ENFORCE_HTTPS:-true}
LOW_NUMBER_SUPPRESSION_THRESHOLD: ${LOW_NUMBER_SUPPRESSION_THRESHOLD:-10}
ROUNDING_TARGET: ${ROUNDING_TARGET:-10}
D2E_BIGQUERY_JDBC_URL: ${D2E_BIGQUERY_JDBC_URL:-}

# Needed only for future alterations of schema when version upgrades
# alp-logto-db-post-alterations-init:
Expand Down
3 changes: 2 additions & 1 deletion plugins/flows/_shared_flow_utils/dao/daobase.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def build_bigquery_r_connection_string(
"jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443;"
f"ProjectId={project};OAuthType=0;"
f"OAuthServiceAcctEmail={client_email};"
f"OAuthPvtKeyPath={key_path}"
f"OAuthPvtKeyPath={key_path};"
"EnableSession=1"
Comment thread
brandantck marked this conversation as resolved.
)
return (
"connectionDetails <- DatabaseConnector::createConnectionDetails("
Expand Down
Loading