mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-01 11:09:14 +00:00
MINOR: Fixes AttributeError: 'DatalakeGcsClient' object has no attribute 'project' (#17526)
This commit is contained in:
parent
30a3f32b0f
commit
c08b83f41d
@ -38,6 +38,10 @@ class DatalakeGcsClient(DatalakeBaseClient):
|
||||
self._client = client
|
||||
self._temp_credentials_file_path_list = temp_credentials_file_path_list
|
||||
|
||||
@property
|
||||
def project(self):
|
||||
return self._client.project
|
||||
|
||||
@staticmethod
|
||||
def get_gcs_client(config: GCSConfig) -> storage.Client:
|
||||
gcs_config = deepcopy(config)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user