We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7267af5 commit ec69dfaCopy full SHA for ec69dfa
1 file changed
src/iceberg/catalog/rest/rest_catalog.cc
@@ -72,7 +72,7 @@ Result<std::unique_ptr<RestCatalog>> RestCatalog::Make(
72
73
// Update resource paths based on the final config
74
ICEBERG_ASSIGN_OR_RAISE(auto final_uri, final_config->Uri());
75
- paths->SetBaseUri(std::string(TrimTrailingSlash(final_uri)));
+ ICEBERG_RETURN_UNEXPECTED(paths->SetBaseUri(std::string(TrimTrailingSlash(final_uri))));
76
77
return std::unique_ptr<RestCatalog>(
78
new RestCatalog(std::move(final_config), std::move(paths)));
0 commit comments