Skip to content

Commit

Permalink
chore: codestyles fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpop-zengenti committed Apr 18, 2024
1 parent 00ea165 commit 684982d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal static string CreateCurlCallString(RouteInfo routeInfo, string? host =
{
var curlUri = new UriBuilder(routeInfo.Uri);

if(!string.IsNullOrWhiteSpace(host))
if (!string.IsNullOrWhiteSpace(host))
{
curlUri.Host = host;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ public async Task<EndpointResponse> Invoke(
if (routeInfo.IsIisFallback)
{
routeInfoType = "IIS falback ";
} else if(routeInfo.BlockVersionInfo != null)
}
else if (routeInfo.BlockVersionInfo != null)
{
routeInfoType = "block ";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Web;
using Microsoft.Net.Http.Headers;
using Zengenti.Contensis.RequestHandler.Application.Resolving;
using Zengenti.Contensis.RequestHandler.Domain.Common;
using Zengenti.Contensis.RequestHandler.Domain.Entities;
Expand Down

0 comments on commit 684982d

Please sign in to comment.