display program data path and bookmark in the dashboard

This commit is contained in:
Luke Pulverenti
2013-06-01 23:17:10 -04:00
parent 5b280de519
commit 7736c8cefc
4 changed files with 46 additions and 2 deletions

View File

@@ -131,6 +131,16 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
await options.ResourcePool.WaitAsync(options.CancellationToken).ConfigureAwait(false);
}
if ((DateTime.UtcNow - client.LastTimeout).TotalSeconds < 30)
{
if (options.ResourcePool != null)
{
options.ResourcePool.Release();
}
throw new HttpException(string.Format("Connection to {0} timed out", options.Url)) { IsTimedOut = true };
}
_logger.Info("HttpClientManager.Get url: {0}", options.Url);
try