aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-03 01:30:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-03 01:30:14 -0400
commit2771dd62891813c481c95ce662dd4b4678151689 (patch)
tree93d152d48517707c2d3300e23a1bffd18bfa9641 /MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
parentb14ee636351789f79ae6257a605f8e3fa934edb4 (diff)
add js local asset manager
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs')
-rw-r--r--MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
index ef2888e4a..ba5d10eef 100644
--- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
+++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
@@ -81,10 +81,10 @@ namespace MediaBrowser.Server.Implementations.IO
throw new ArgumentNullException("path");
}
- // This is an arbitraty amount of time, but delay it because file system writes often trigger events after RemoveTempIgnore has been called.
+ // This is an arbitraty amount of time, but delay it because file system writes often trigger events long after the file was actually written to.
// 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(15000).ConfigureAwait(false);
+ // But if we make this delay too high, we risk missing legitimate changes, such as user adding a new file, or hand-editing metadata
+ await Task.Delay(20000).ConfigureAwait(false);
string val;
_tempIgnoredPaths.TryRemove(path, out val);