Fix missing cast to str (#18016)

This commit is contained in:
IceS2 2024-09-27 16:03:45 +02:00 committed by GitHub
parent 9442cac1a5
commit c9d37f6afc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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