goldenccargill commented on code in PR #104: URL: https://github.com/apache/pulsar-dotpulsar/pull/104#discussion_r888819328
########## tests/DotPulsar.Tests/ProducerTests.cs: ########## @@ -152,6 +152,7 @@ private IPulsarClient CreateClient() => PulsarClient .Builder() .Authentication(AuthenticationFactory.Token(ct => ValueTask.FromResult(_fixture.CreateToken(Timeout.InfiniteTimeSpan)))) + .KeepAliveInterval(TimeSpan.FromSeconds(5)) Review Comment: to make the test run faster, the check to see if the server responded happens every 5 seconds instead of 30 ########## tests/DotPulsar.Tests/IntegrationCollection.cs: ########## @@ -18,3 +18,6 @@ namespace DotPulsar.Tests; [CollectionDefinition("Integration")] public class IntegrationCollection : ICollectionFixture<IntegrationFixture> { } + +[CollectionDefinition("KeepAlive")] +public class KeepAliveCollection : ICollectionFixture<KeepAliveFixture> { } Review Comment: I tried to use the existing cluster but once you start poking around with the network subsequent tests failed so I opted for a separate cluster ########## tests/DotPulsar.Tests/xunit.runner.json: ########## @@ -1,4 +1,5 @@ { "$schema": "https://xunit.net/schema/current/xunit.runner.schema.json", - "diagnosticMessages": true + "diagnosticMessages": true, + "parallelizeTestCollections": false Review Comment: for same reason as above I can't -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org