fixes #335 - Tasks Stalled

pull/702/head
Luke Pulverenti 12 years ago
parent 78c7e79b61
commit 150c74ece1

@ -130,18 +130,7 @@ namespace MediaBrowser.Providers.Movies
foreach (var id in list)
{
try
{
await UpdateMovie(id, moviesDataPath, cancellationToken).ConfigureAwait(false);
}
catch (HttpException ex)
{
// Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
if (!ex.IsTimedOut)
{
throw;
}
}
await UpdateMovie(id, moviesDataPath, cancellationToken).ConfigureAwait(false);
numComplete++;
double percent = numComplete;

@ -144,18 +144,7 @@ namespace MediaBrowser.Providers.Music
foreach (var id in list)
{
try
{
await UpdateArtist(id, artistsDataPath, cancellationToken).ConfigureAwait(false);
}
catch (HttpException ex)
{
// Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
if (!ex.IsTimedOut)
{
throw;
}
}
await UpdateArtist(id, artistsDataPath, cancellationToken).ConfigureAwait(false);
numComplete++;
double percent = numComplete;

@ -145,18 +145,7 @@ namespace MediaBrowser.Providers.TV
foreach (var id in list)
{
try
{
await UpdateSeries(id, seriesDataPath, cancellationToken).ConfigureAwait(false);
}
catch (HttpException ex)
{
// Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
if (!ex.IsTimedOut)
{
throw;
}
}
await UpdateSeries(id, seriesDataPath, cancellationToken).ConfigureAwait(false);
numComplete++;
double percent = numComplete;

Loading…
Cancel
Save