This is an automated email from the ASF dual-hosted git repository. duhengforever pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-schema-registry.git
commit 0696934a351dc26d2f2e659b786f1e09cede35f3 Author: fan <[email protected]> AuthorDate: Sun Jul 31 16:30:22 2022 +0800 fix schema full name --- .../apache/rocketmq/schema/registry/common/dto/GetSchemaResponse.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/main/java/org/apache/rocketmq/schema/registry/common/dto/GetSchemaResponse.java b/common/src/main/java/org/apache/rocketmq/schema/registry/common/dto/GetSchemaResponse.java index 5853f46..49c150f 100644 --- a/common/src/main/java/org/apache/rocketmq/schema/registry/common/dto/GetSchemaResponse.java +++ b/common/src/main/java/org/apache/rocketmq/schema/registry/common/dto/GetSchemaResponse.java @@ -60,6 +60,7 @@ public class GetSchemaResponse extends BaseDto { public GetSchemaResponse(QualifiedName name, SchemaRecordInfo schemaRecordInfo) { this.subjectFullName = name.subjectFullName(); + this.schemaFullName = name.schemaFullName(); this.schemaId = schemaRecordInfo.getSchemaId(); this.version = schemaRecordInfo.getVersion(); this.idl = schemaRecordInfo.getIdl();
