Browse Source

ease up on directory watcher delay

Luke Pulverenti 11 years ago
parent
commit
f6cdca1f07
1 changed files with 2 additions and 1 deletions
  1. 2 1
      MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs

+ 2 - 1
MediaBrowser.Server.Implementations/IO/DirectoryWatchers.cs

@@ -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);