Skip to content

Commit 71ecf1c

Browse files
chore: #1159 Fix incorrect timeout for publisher (#1271)
* Increased the default timeout to account for block proof delays and block interleave in a multi-publisher scenario. Signed-off-by: Joseph S <121976561+jsync-swirlds@users.noreply.github.com>
1 parent fea683c commit 71ecf1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

block-node/stream-publisher/src/main/java/org/hiero/block/node/stream/publisher/PublisherConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@ConfigData("producer")
1818
public record PublisherConfig(
1919
@Loggable @ConfigProperty(defaultValue = "PRODUCTION") PublisherType type,
20-
@Loggable @ConfigProperty(defaultValue = "1500") @Min(1) int timeoutThresholdMillis) {
20+
@Loggable @ConfigProperty(defaultValue = "8000") @Min(2000) int timeoutThresholdMillis) {
2121
/**
2222
* The type of the publisher service to use - PRODUCTION or NO_OP.
2323
*/

0 commit comments

Comments
 (0)