Skip to content

Commit

Permalink
fixes code not awaiting on async call
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianoc committed Aug 18, 2023
1 parent 4ff966d commit f5dfb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cecilifier.Web/CecilifierRestHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private static async Task ExecuteReadOnlyGitHubApiAuthenticated(HttpContext cont
if (string.IsNullOrWhiteSpace(_cecilifierGitHubToken))
{
_logger.LogWarning($"CECILIFIER_GITHUB_TOKEN not defined. Retrieval of list of bugs fixed in staging/latest release info will not be available.");
context.Response.WriteAsync("N/A");
await context.Response.WriteAsync("N/A");
return;
}

Expand Down

0 comments on commit f5dfb34

Please sign in to comment.