mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-28 19:05:53 +00:00
Fix missing cast to str (#18016)
This commit is contained in:
parent
9442cac1a5
commit
c9d37f6afc
@ -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