删除模拟重发

back_recharge
lvxinran 2021-01-14 16:39:35 +08:00
parent e9f835fdf5
commit cb739797c8
1 changed files with 5 additions and 5 deletions

View File

@ -139,11 +139,11 @@ public class SessionManager implements INetSession<ISession>, INetReceived<ISess
private void ackIndication(ISession iSession, int ackId) {
LOGGER.info("the uid={},the ackId={}", iSession.getUid(), ackId);
iSession.clearIndication(ackId);
try {
TimeUnit.SECONDS.sleep(3600);
} catch (InterruptedException e) {
e.printStackTrace();
}
// try {
// TimeUnit.SECONDS.sleep(3600);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
MessageUtil.sendAck(iSession, ackId);
}