Skip to content

Commit

Permalink
Increase message count in end2end test
Browse files Browse the repository at this point in the history
  • Loading branch information
numinnex committed Oct 18, 2023
1 parent b69471b commit c67ad90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public sealed class IggyTcpPollMessagesFixture : IAsyncLifetime
private static readonly StreamRequest StreamRequest = StreamFactory.CreateStreamRequest();
private static readonly TopicRequest TopicRequest = TopicFactory.CreateTopicRequest();
private static readonly TopicRequest HeadersTopicRequest = TopicFactory.CreateTopicRequest();
public const int MessageCount = 1000;
public const int MessageCount = 10000000;

public readonly int StreamId = StreamRequest.StreamId;
public readonly int TopicId = TopicRequest.TopicId;
Expand All @@ -47,7 +47,7 @@ public async Task InitializeAsync()
options.Protocol = Protocol.Tcp;
options.IntervalBatchingConfig = x =>
{
x.Enabled = true;
x.Enabled = false;
x.Interval = TimeSpan.FromMilliseconds(100);
x.MaxMessagesPerBatch = 1000;
x.MaxRequests = 8912;
Expand Down

0 comments on commit c67ad90

Please sign in to comment.