Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eng/PatchConfig.props
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Later on, this will be checked using this condition:
</PropertyGroup>
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.3.7' ">
<PackagesInPatch>
Microsoft.AspNetCore.HttpOverrides;
</PackagesInPatch>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public void ApplyForwarders(HttpContext context)
if (currentValues.RemoteIpAndPort != null && checkKnownIps && !CheckKnownAddress(currentValues.RemoteIpAndPort.Address))
{
// Stop at the first unknown remote IP, but still apply changes processed so far.
_logger.LogWarning(1, $"Unknown proxy: {currentValues.RemoteIpAndPort}");
_logger.LogDebug(1, $"Unknown proxy: {currentValues.RemoteIpAndPort}");
break;
}
}
Expand Down
Loading