Skip to content

Commit

Permalink
Fix performance issue with unavailable projects.
Browse files Browse the repository at this point in the history
Issue #37
  • Loading branch information
steffen-wilke committed Feb 13, 2020
1 parent 2b0c7a3 commit 656bacc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Soloplan.WhatsON.CruiseControl/CruiseControlServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ private async Task<TModel> GetStatusAsync<TModel>(CancellationToken cancellation
throw new OperationCanceledException(ex.Message, ex, cancellationToken);
}

throw;
log.Error($"Could not fetch status from {requestUrl}.", ex);
return null;
}
}

Expand Down

0 comments on commit 656bacc

Please sign in to comment.