From a125cded727f2cf253fc3b366b5df457614ed648 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Mon, 6 May 2024 15:59:49 -0600 Subject: [PATCH] Set the Tx timeout to 2 minutes, because GH actions are so stupidly slow --- src/NexusMods.MnemonicDB.Storage/DatomStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NexusMods.MnemonicDB.Storage/DatomStore.cs b/src/NexusMods.MnemonicDB.Storage/DatomStore.cs index af4a424c..fb8cdfd5 100644 --- a/src/NexusMods.MnemonicDB.Storage/DatomStore.cs +++ b/src/NexusMods.MnemonicDB.Storage/DatomStore.cs @@ -41,7 +41,7 @@ public class DatomStore : IDatomStore private readonly Task _startupTask; private TxId _asOfTx = TxId.MinValue; - private static readonly TimeSpan TransactionTimeout = TimeSpan.FromSeconds(10); + private static readonly TimeSpan TransactionTimeout = TimeSpan.FromMinutes(120); /// /// Cached version of the registry ID to avoid the overhead of looking it up every time