调整单次通知更新任务的数量为500(原来200)

This commit is contained in:
GoEdgeLab
2021-12-17 14:25:40 +08:00
parent 3eda99c636
commit 1b2b5605d3

View File

@@ -51,7 +51,7 @@ func (this *SyncClusterTask) loop() error {
}
ctx := rpcClient.Context(0)
tasksResp, err := rpcClient.NodeTaskRPC().FindNotifyingNodeTasks(ctx, &pb.FindNotifyingNodeTasksRequest{Size: 200})
tasksResp, err := rpcClient.NodeTaskRPC().FindNotifyingNodeTasks(ctx, &pb.FindNotifyingNodeTasksRequest{Size: 500})
if err != nil {
return err
}