changes app timeout to 1.5 mins

This commit is contained in:
Shannon
2015-07-13 17:10:35 +02:00
parent 9be2f99e7b
commit 6aa633c8c5

View File

@@ -34,7 +34,7 @@ namespace Umbraco.Core
// actions to run before releasing the main domain
private readonly SortedList<int, Action> _callbacks = new SortedList<int, Action>();
private const int LockTimeoutMilliseconds = 4 * 60 * 1000; // 4'
private const int LockTimeoutMilliseconds = 90000; // (1.5 * 60 * 1000) == 1 min 30 seconds
#endregion