Skip to content

Commit

Permalink
decrease amount of retries to 1 in serial provisioning (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImUrX committed Dec 17, 2023
1 parent 563713e commit 8253110
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ProvisioningHandler implements SerialListener {
private final Timer provisioningTickTimer = new Timer("ProvisioningTickTimer");
private long lastStatusChange = -1;
private byte connectRetries = 0;
private final byte MAX_CONNECTION_RETRIES = 2;
private final byte MAX_CONNECTION_RETRIES = 1;
private final VRServer vrServer;

public ProvisioningHandler(VRServer vrServer) {
Expand Down

0 comments on commit 8253110

Please sign in to comment.