Skip to content

Commit 713a5fe

Browse files
committed
Remove versioning from S3 bucket.
1 parent 13fb08c commit 713a5fe

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

awswrangler/pandas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def read_sql_athena(self, sql, database, s3_output=None):
8181
s3_resource = self._session.boto3_session.resource("s3")
8282
s3_resource.Bucket(s3_output)
8383
query_execution_id = self._session.athena.run_query(
84-
sql, database, s3_output)
84+
query=sql, database=database, s3_output=s3_output)
8585
query_response = self._session.athena.wait_query(
8686
query_execution_id=query_execution_id)
8787
if query_response.get("QueryExecution").get("Status").get(

testing/sam/template.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ Resources:
1919
Bucket:
2020
Type: AWS::S3::Bucket
2121
Properties:
22-
VersioningConfiguration:
23-
Status: Suspended
2422
PublicAccessBlockConfiguration:
2523
BlockPublicAcls: true
2624
BlockPublicPolicy: true

0 commit comments

Comments
 (0)