[集群] 修复BUG

dev/数据库统合
648540858 2025-01-03 17:37:01 +08:00
parent a2e7cd0323
commit 5f4c943f26
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class RedisRpcPlatformController extends RpcController {
Platform platform = jsonObject.getObject("platform", Platform.class); Platform platform = jsonObject.getObject("platform", Platform.class);
List<CommonGBChannel> channels = jsonObject.getJSONArray("channels").toJavaList(CommonGBChannel.class); List<CommonGBChannel> channels = jsonObject.getJSONArray("channels").toJavaList(CommonGBChannel.class);
String type = jsonObject.getString("type"); String type = jsonObject.getString("type");
eventPublisher.catalogEventPublish(platform, channels, type); eventPublisher.catalogEventPublish(platform, channels, type, false);
RedisRpcResponse response = request.getResponse(); RedisRpcResponse response = request.getResponse();
response.setStatusCode(ErrorCode.SUCCESS.getCode()); response.setStatusCode(ErrorCode.SUCCESS.getCode());
return response; return response;