decrease frequency of hitting remote notifications url

This commit is contained in:
Luke Pulverenti 2013-08-23 18:13:32 -04:00
parent 950cc50ae6
commit 0f47fb719f

View file

@ -27,7 +27,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
private readonly INotificationsRepository _notificationsRepo;
private readonly IUserManager _userManager;
private readonly TimeSpan _frequency = TimeSpan.FromHours(3);
private readonly TimeSpan _frequency = TimeSpan.FromHours(6);
private readonly TimeSpan _maxAge = TimeSpan.FromDays(31);
public RemoteNotifications(IApplicationPaths appPaths, ILogger logger, IHttpClient httpClient, IJsonSerializer json, INotificationsRepository notificationsRepo, IUserManager userManager)