mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-03 06:03:12 +00:00
Fix missing cast to str (#18016)
This commit is contained in:
parent
d8ba0eba2b
commit
cb2ef3f559
@ -49,7 +49,7 @@ class IcebergRestCatalog(IcebergCatalogBase):
|
|||||||
|
|
||||||
parameters = {
|
parameters = {
|
||||||
"warehouse": catalog.warehouseLocation,
|
"warehouse": catalog.warehouseLocation,
|
||||||
"uri": catalog.connection.uri,
|
"uri": str(catalog.connection.uri),
|
||||||
"credential": credential,
|
"credential": credential,
|
||||||
"token": catalog.connection.token.get_secret_value()
|
"token": catalog.connection.token.get_secret_value()
|
||||||
if catalog.connection.token
|
if catalog.connection.token
|
||||||
|
Loading…
x
Reference in New Issue
Block a user