Skip to content

Commit

Permalink
fix(mqtt5): builder max reconnect delay fix (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDombo authored May 11, 2023
1 parent 13c8f19 commit 727e840
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ public AwsIotMqtt5ClientBuilder withMinReconnectDelayMs(Long minReconnectDelayMs
* @return - The AwsIotMqtt5ClientBuilder
*/
public AwsIotMqtt5ClientBuilder withMaxReconnectDelayMs(Long maxReconnectDelayMs) {
this.config.withMinReconnectDelayMs(maxReconnectDelayMs);
this.config.withMaxReconnectDelayMs(maxReconnectDelayMs);
return this;
}

Expand Down

0 comments on commit 727e840

Please sign in to comment.