Skip to content

Commit 0b860f5

Browse files
authored
Try with no strict JSON load
1 parent 4743ab6 commit 0b860f5

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

cdp_backend/pipeline/pipeline_config.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,11 @@ def validated_gcs_bucket_name(self) -> str:
5757

5858
else:
5959
# Open the key to get the project id
60-
with open(self.google_credentials_file) as open_resource:
61-
creds = json.load(open_resource)
60+
with open(
61+
self.google_credentials_file,
62+
encoding="utf-8",
63+
) as open_resource:
64+
creds = json.load(open_resource, strict=False)
6265
project_id = creds["project_id"]
6366

6467
# Remove all files in bucket
@@ -118,8 +121,11 @@ def validated_gcs_bucket_name(self) -> str:
118121

119122
else:
120123
# Open the key to get the project id
121-
with open(self.google_credentials_file) as open_resource:
122-
creds = json.load(open_resource)
124+
with open(
125+
self.google_credentials_file,
126+
encoding="utf-8",
127+
) as open_resource:
128+
creds = json.load(open_resource, strict=False)
123129
project_id = creds["project_id"]
124130

125131
# Remove all files in bucket

0 commit comments

Comments
 (0)