Skip to content

Commit ec69dfa

Browse files
committed
fix windows ci
1 parent 7267af5 commit ec69dfa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/iceberg/catalog/rest/rest_catalog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Result<std::unique_ptr<RestCatalog>> RestCatalog::Make(
7272

7373
// Update resource paths based on the final config
7474
ICEBERG_ASSIGN_OR_RAISE(auto final_uri, final_config->Uri());
75-
paths->SetBaseUri(std::string(TrimTrailingSlash(final_uri)));
75+
ICEBERG_RETURN_UNEXPECTED(paths->SetBaseUri(std::string(TrimTrailingSlash(final_uri))));
7676

7777
return std::unique_ptr<RestCatalog>(
7878
new RestCatalog(std::move(final_config), std::move(paths)));

0 commit comments

Comments
 (0)