未验证 提交 df75eb7d 编写于 作者: wu-sheng's avatar wu-sheng 提交者: GitHub

Fix a wrong check about entity if GraphQL at the endpoint relation level. (#8218)

上级 00ffdf77
......@@ -63,6 +63,7 @@ Release Notes.
* Add customized envoy ALS protocol receiver for satellite transmit batch data.
* Remove `logback` dependencies in IoTDB plugin.
* Fix `StorageModuleElasticsearchProvider` doesn't watch on `trustStorePath`.
* Fix a wrong check about entity if GraphQL at the endpoint relation level.
#### UI
......
......@@ -89,7 +89,7 @@ public class Entity {
&& Objects.nonNull(serviceInstanceName) && Objects.nonNull(destServiceInstanceName)
&& Objects.nonNull(normal) && Objects.nonNull(destNormal);
case EndpointRelation:
return Objects.nonNull(serviceName) && Objects.nonNull(endpointName)
return Objects.nonNull(serviceName) && Objects.nonNull(destServiceName)
&& Objects.nonNull(endpointName) && Objects.nonNull(destEndpointName)
&& Objects.nonNull(normal) && Objects.nonNull(destNormal);
default:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册