From be9f2e72abf244a647c3600c3765a181898167c7 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 1 Mar 2024 17:03:05 -0800 Subject: [PATCH] Increase migration timeout to 5 minutes (cherry picked from commit 086d3b5afaa7680d22835ca66da2afcb6dd5865e) --- .../Datastore/Migration/Framework/MigrationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs b/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs index 8ef3b647a..992f2a26f 100644 --- a/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs +++ b/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs @@ -53,7 +53,7 @@ namespace NzbDrone.Core.Datastore.Migration.Framework .Configure(opt => { opt.PreviewOnly = false; - opt.Timeout = TimeSpan.FromSeconds(60); + opt.Timeout = TimeSpan.FromMinutes(5); }) .Configure(cfg => {