We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d6c54 commit bd3703aCopy full SHA for bd3703a
metadata-ingestion/src/datahub/ingestion/source/dbt/dbt_core.py
@@ -488,7 +488,7 @@ def load_file_as_json(
488
) -> Dict:
489
if re.match("^https?://", uri):
490
return json.loads(requests.get(uri).text)
491
- elif re.match("^s3://", uri):
+ elif re.match("^s3://", uri) or re.match("^s3a://", uri):
492
u = urlparse(uri)
493
assert aws_connection
494
response = aws_connection.get_s3_client().get_object(
0 commit comments