ease up on directory watcher delay

This commit is contained in:
Luke Pulverenti 2013-11-23 15:01:22 -05:00
parent e3cf3d73f1
commit f6cdca1f07

View file

@ -68,7 +68,8 @@ 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.
await Task.Delay(40000).ConfigureAwait(false);
// Seeing delays up to 40 seconds, but not going to ignore changes for that long.
await Task.Delay(20000).ConfigureAwait(false);
string val;
_tempIgnoredPaths.TryRemove(path, out val);