aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/IO
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-01 10:49:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-01 10:49:23 -0400
commitf2abd8ba39eefd5397eb3f0e327efbca8d8ecd0f (patch)
treeb2759d5a30620db61d324d00d5956d9bfc4e43e1 /MediaBrowser.Server.Implementations/IO
parent68e64feafd1e5e91522938fa91217d3d9ce26e62 (diff)
update live tv database
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO')
-rw-r--r--MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
index 491549d64..ef2888e4a 100644
--- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
+++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
@@ -84,7 +84,7 @@ namespace MediaBrowser.Server.Implementations.IO
// This is an arbitraty amount of time, but delay it because file system writes often trigger events after RemoveTempIgnore has been called.
// Seeing long delays in some situations, especially over the network, sometimes up to 45 seconds
// But if we make this delay too high, we risk missing legitimate changes
- await Task.Delay(10000).ConfigureAwait(false);
+ await Task.Delay(15000).ConfigureAwait(false);
string val;
_tempIgnoredPaths.TryRemove(path, out val);