Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proxy all requests - even a repeated one #1038

Merged
merged 7 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Resolving codefactor spaces in the code
  • Loading branch information
sameena-ops committed Dec 11, 2023
commit e78d7a6a114309e5a8a00fa12d0ca3220cef83be
1 change: 0 additions & 1 deletion src/WireMock.Net/Owin/WireMockMiddlewareOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,5 @@ internal class WireMockMiddlewareOptions : IWireMockMiddlewareOptions
public QueryParameterMultipleValueSupport? QueryParameterMultipleValueSupport { get; set; }

/// <inheritdoc />

public bool ProxyAll { get; set; }
sameena-ops marked this conversation as resolved.
Show resolved Hide resolved
}
1 change: 0 additions & 1 deletion src/WireMock.Net/Server/WireMockServer.Proxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ private void InitProxyAndRecord(WireMockServerSettings settings)
proxyRespondProvider.AtPriority(int.MinValue);
sameena-ops marked this conversation as resolved.
Show resolved Hide resolved
}


proxyRespondProvider.RespondWith(new ProxyAsyncResponseProvider(ProxyAndRecordAsync, settings));
}

Expand Down
Loading