From 1e833d087d8d54ef88178c32889c136d0e5283c5 Mon Sep 17 00:00:00 2001 From: zxb <919411476@qq.com> Date: Thu, 14 Mar 2024 01:16:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E9=AB=98=20=E6=8E=A8=E6=B5=81?= =?UTF-8?q?=E9=87=8D=E8=AF=95=E6=AC=A1=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../transmit/event/request/impl/AckRequestProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/AckRequestProcessor.java b/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/AckRequestProcessor.java index e79ccd61..1632d0d7 100644 --- a/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/AckRequestProcessor.java +++ b/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/AckRequestProcessor.java @@ -216,7 +216,7 @@ public class AckRequestProcessor extends SIPRequestProcessorParent implements In // 重试间隔 .withWaitStrategy(WaitStrategies.fixedWait(1, TimeUnit.MILLISECONDS)) // 重试次数 - .withStopStrategy(StopStrategies.stopAfterAttempt(3000)) + .withStopStrategy(StopStrategies.stopAfterAttempt(10 * 1000)) .build(); try { startSendRtpStreamResult = retryer.call(() -> zlmServerFactory.startSendRtpStream(mediaInfo, param));