Fix `H2MetadataQueryDAO.searchService` doesn't support auto grouping. [issue #7653] (#7654)

This commit is contained in:
刘威 2021-09-05 13:56:00 +08:00 committed by GitHub
parent b78a51bc74
commit de59bf7aeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ Release Notes.
* Support mTLS for gRPC channel.
* Add yaml file suffix limit when reading ui templates.
* Support consul grouped dynamic configurations.
* Fix `H2MetadataQueryDAO.searchService` doesn't support auto grouping.
#### UI

View File

@ -163,6 +163,7 @@ public class H2MetadataQueryDAO implements IMetadataQueryDAO {
Service service = new Service();
service.setId(resultSet.getString(H2TableInstaller.ID_COLUMN));
service.setName(resultSet.getString(ServiceTraffic.NAME));
service.setGroup(resultSet.getString(ServiceTraffic.GROUP));
return service;
}
}