Skip to content

Commit

Permalink
Increase ack expiry time to 60 seconds
Browse files Browse the repository at this point in the history
Signed-off-by: Kondaka <[email protected]>
  • Loading branch information
kkondaka committed Nov 28, 2023
1 parent b150cce commit b6244d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
@DataPrepperPlugin(name = "in_memory", pluginType = Source.class, pluginConfigurationType = InMemoryConfig.class)
public class InMemorySource implements Source<Record<Event>> {
public static final Duration ACK_EXPIRY_TIME = Duration.ofSeconds(35);
public static final Duration ACK_EXPIRY_TIME = Duration.ofSeconds(60);
private static final Logger LOG = LoggerFactory.getLogger(InMemorySource.class);

private final String testingKey;
Expand Down

0 comments on commit b6244d3

Please sign in to comment.