xiaozcy commented on code in PR #7502:
URL: https://github.com/apache/gravitino/pull/7502#discussion_r2181966171
##########
catalogs/catalog-model/src/main/java/org/apache/gravitino/catalog/model/ModelCatalogOperations.java:
##########
@@ -503,7 +504,7 @@ private ModelVersionImpl
toModelVersionImpl(ModelVersionEntity modelVersion) {
return ModelVersionImpl.builder()
.withVersion(modelVersion.version())
.withAliases(modelVersion.aliases().toArray(new String[0]))
- .withUri(modelVersion.uri())
+ .withUri(modelVersion.uris().get(ModelVersion.URI_NAME_UNKNOWN))
Review Comment:
This PR only updates the backend storage schema and logic, and is compatible
with the usage of a single URI. The usage of multiple URIs on the front end
will be implemented in the next subtask(#7382).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]