Adam Rodger

Results 116 comments of Adam Rodger
trafficstars

In terms of the technical change itself, that looks OK, and thanks for linking into some of the MS detection stuff so we can be sure we're being consistent. It...

The FFI library does currently support Linux libc ARM binaries, so assuming it's possibly to detect ARM when restoring the NuGet then this should be straightforward to add. On Mon,...

Here are the methods for determining the runtime arch: https://learn.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.runtimeinformation

This could also be related: https://github.com/pact-foundation/pact-reference/issues/298 There are places where it does implicit conversions between strings and numbers if the number looks like a string, if I remember correctly. It's...

Sorry, I'm unclear what the purpose of the PR is, could you explain? Are you saying that if this new test is merged then it will fail?

I managed to work around this issue in a background service by adding a message handler to all my `HttpClient` instances (created via `HttpClientFactory`) which ensures that the header values...

Please could you share a code reproduction? This seems very specific to the code you've written so I'd need to see that really.

@HuiSou I'd still need to see your code I think in order to work out how you're calling this, if you could share that reproduction

Closed due to inactivity

That's correct @mefellows 👍 Each middleware would need to know which requests it can handle, and forward on to the next one if it can't. Like you say, that's not...