From 43cb22ff2b829ff3708ecb16b46d19f6af667cae Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 11 Sep 2023 16:31:39 +0300 Subject: [PATCH] Bump migration timeout to 10 minutes --- .../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 1249dfd8b..45593cb53 100644 --- a/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs +++ b/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs @@ -52,7 +52,7 @@ namespace NzbDrone.Core.Datastore.Migration.Framework .Configure(opt => { opt.PreviewOnly = false; - opt.Timeout = TimeSpan.FromSeconds(60); + opt.Timeout = TimeSpan.FromMinutes(10); }) .Configure(cfg => {