Skip to content

Commit

Permalink
hardcode
Browse files Browse the repository at this point in the history
Divyanshu-Patel committed Oct 10, 2024
1 parent cd47e33 commit 62c8667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions soda/redshift/soda/data_sources/redshift_data_source.py
Original file line number Diff line number Diff line change
@@ -67,8 +67,8 @@ def __get_cluster_credentials(self, aws_credentials: AwsCredentials):
)

cluster_name = "bi-edw-db"
username = self.dbuser if self.dbuser else self.username
db_name = self.dbname if self.dbname else self.database
username = "atlan_user"
db_name = "bi_edw_db"
cluster_creds = client.get_cluster_credentials(
DbUser=username, DbName=db_name, ClusterIdentifier=cluster_name, AutoCreate=False, DurationSeconds=3600
)

0 comments on commit 62c8667

Please sign in to comment.