mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-06 21:43:37 +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._client = client
|
||||||
self._temp_credentials_file_path_list = temp_credentials_file_path_list
|
self._temp_credentials_file_path_list = temp_credentials_file_path_list
|
||||||
|
|
||||||
|
@property
|
||||||
|
def project(self):
|
||||||
|
return self._client.project
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_gcs_client(config: GCSConfig) -> storage.Client:
|
def get_gcs_client(config: GCSConfig) -> storage.Client:
|
||||||
gcs_config = deepcopy(config)
|
gcs_config = deepcopy(config)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user