From 6ec44c04baf355881e5cb12c7f2d2efcc8dc5db4 Mon Sep 17 00:00:00 2001 From: Fredrik Arvidsson Date: Thu, 20 Jan 2022 19:40:57 +0100 Subject: [PATCH] increase the timeout for the socket based tests as the CI VM seems to be slow --- ...ver.When_connecting_to_the_server_and_producing_a_message.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Kafka.TestFramework.Tests/Given_a_socket_based_test_server.When_connecting_to_the_server_and_producing_a_message.cs b/tests/Kafka.TestFramework.Tests/Given_a_socket_based_test_server.When_connecting_to_the_server_and_producing_a_message.cs index 8bc03b2..9549340 100644 --- a/tests/Kafka.TestFramework.Tests/Given_a_socket_based_test_server.When_connecting_to_the_server_and_producing_a_message.cs +++ b/tests/Kafka.TestFramework.Tests/Given_a_socket_based_test_server.When_connecting_to_the_server_and_producing_a_message.cs @@ -122,7 +122,7 @@ private static async Task ProduceMessageFromClientAsync(string host, }) { BootstrapServers = $"{host}:{port}", - MessageTimeoutMs = 5000, + MessageTimeoutMs = 15000, SocketTimeoutMs = 30000, Debug = "all" };