aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/IO
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-07 13:05:14 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-07 13:05:14 -0500
commit1f0fc33a862cc7d06cb0ea8429c8bdbb6bd93568 (patch)
tree8c258e4b032129ecd578438799752eaebab1f21d /MediaBrowser.Server.Implementations/IO
parentb8b976d5c211ac22a76d3f117ddd23ca79e56ab3 (diff)
extend directory watcher remove temp ignore delay
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO')
-rw-r--r--MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs b/MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs
index a8c923bb0..03739cc8f 100644
--- a/MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs
+++ b/MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs
@@ -67,7 +67,7 @@ namespace MediaBrowser.Server.Implementations.IO
public async void RemoveTempIgnore(string path)
{
// This is an arbitraty amount of time, but delay it because file system writes often trigger events after RemoveTempIgnore has been called.
- await Task.Delay(1500).ConfigureAwait(false);
+ await Task.Delay(2000).ConfigureAwait(false);
string val;
_tempIgnoredPaths.TryRemove(path, out val);