调整超时时间配置

This commit is contained in:
zengqiao
2022-09-15 11:31:25 +08:00
parent 1e318a4c40
commit 5d412890b4
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ import org.springframework.beans.factory.annotation.Autowired;
cron = "0 0/1 * * * ? *",
autoRegister = true,
consensual = ConsensualEnum.BROADCAST,
timeout = 6 * 60)
timeout = 2 * 60)
public class CommunityReassignJobTask extends AbstractAsyncCommonDispatchTask {
private static final ILog log = LogFactory.getLog(CommunityReassignJobTask.class);

View File

@@ -13,7 +13,7 @@ import org.springframework.beans.factory.annotation.Autowired;
cron = "0 0/1 * * * ? *",
autoRegister = true,
consensual = ConsensualEnum.BROADCAST,
timeout = 6 * 60)
timeout = 2 * 60)
public class KMJobTask extends AbstractAsyncCommonDispatchTask {
@Autowired

View File

@@ -28,7 +28,7 @@ import java.util.stream.Collectors;
cron = "0 0/1 * * * ? *",
autoRegister = true,
consensual = ConsensualEnum.BROADCAST,
timeout = 6 * 60)
timeout = 2 * 60)
public class SyncBrokerConfigDiffTask extends AbstractAsyncMetadataDispatchTask {
protected static final ILog log = LogFactory.getLog(SyncBrokerConfigDiffTask.class);