diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-22 01:17:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-22 01:17:39 -0400 |
| commit | 150ffb85d6ffdafac3645f71350c5412da37dd36 (patch) | |
| tree | e0eaf45954d55577bbe0170ab7eefab404897a40 /MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | |
| parent | 388d32aa57c4b9ff70881b82094ec65ffa34fb2b (diff) | |
| parent | 52edc5a091323f6dcbb921e1696ea6ffc67ba887 (diff) | |
Merge pull request #1962 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs index 0690d62dd..99cb80cb2 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 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, such as user adding a new file, or hand-editing metadata - await Task.Delay(25000).ConfigureAwait(false); + await Task.Delay(45000).ConfigureAwait(false); string val; _tempIgnoredPaths.TryRemove(path, out val); |
