Skip to content

Commit

Permalink
Raised up timeout in client to receive responses to 1 second
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Nov 17, 2024
1 parent fda7eaf commit b26f940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/src/test/java/io/moquette/testclient/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface ICallback {

private static final Logger LOG = LoggerFactory.getLogger(Client.class);

private static final Duration TIMEOUT_DURATION = Duration.ofMillis(500);
private static final Duration TIMEOUT_DURATION = Duration.ofMillis(1000);

final ClientNettyMQTTHandler handler = new ClientNettyMQTTHandler();
EventLoopGroup workerGroup;
Expand Down

0 comments on commit b26f940

Please sign in to comment.