aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-02 16:54:37 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-02 16:54:37 -0500
commit821e8246872cfa380249bca2f79ea810f27c87d5 (patch)
treec1ba1b2c3f24e8a8f92573828fbaa08d1ada3c97 /MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs
parent4bf13f7754f9797eb5adc15ece0fcb2fd94cdb04 (diff)
better caching of remote data
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs')
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs b/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs
index 27170ced9..701cf21fb 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs
@@ -41,7 +41,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
/// </summary>
public void Run()
{
- _timer = new Timer(s => LoadAllRegistrations(), null, TimeSpan.FromMilliseconds(100), TimeSpan.FromHours(24));
+ _timer = new Timer(s => LoadAllRegistrations(), null, TimeSpan.FromMilliseconds(100), TimeSpan.FromHours(12));
}
private async Task LoadAllRegistrations()