Skip to content

Commit 7062722

Browse files
Increase VectorSetOverwriteTests timeout (#2055)
* in local testing failures do not reproduce, suggests the CI machine is at fault; kick up timeouts during Vector Set overwrite tests to test that hypothesis * actually use the higher timeout, yeesh
1 parent c504ce0 commit 7062722

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/standalone/Garnet.test.vectorset/VectorSetOverwriteTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ private async Task TestVectorSetOverwrittenCommandAsync(
237237

238238
var vectorManager = server.Provider.StoreWrapper.DefaultDatabase.VectorManager;
239239

240-
using var redis = ConnectionMultiplexer.Connect(TestUtils.GetConfig(allowAdmin: true));
240+
var config = TestUtils.GetConfig(allowAdmin: true);
241+
config.AsyncTimeout = (int)TimeSpan.FromMinutes(3).TotalMilliseconds;
242+
using var redis = ConnectionMultiplexer.Connect(config);
241243
var s = redis.GetServers().Single();
242244
var db = redis.GetDatabase();
243245

0 commit comments

Comments
 (0)