Skip to content

Commit

Permalink
Update keepalive interval to ping every 30sec.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal authored and alex-signal committed Aug 18, 2022
1 parent c6be427 commit 62871c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
public class WebSocketConnection extends WebSocketListener {

private static final String TAG = WebSocketConnection.class.getSimpleName();
public static final int KEEPALIVE_TIMEOUT_SECONDS = 55;
public static final int KEEPALIVE_TIMEOUT_SECONDS = 30;

private final LinkedList<WebSocketRequestMessage> incomingRequests = new LinkedList<>();
private final Map<Long, OutgoingRequest> outgoingRequests = new HashMap<>();
Expand Down

0 comments on commit 62871c1

Please sign in to comment.