queil

Results 15 comments of queil

@demystifyfp I think your assumption is mostly correct in typical enterprise apps. However, I mostly use F# in Suave-based DevOps apps and only setting config via env. variables. The extra...

Hi @aurecchia, unfortunately I am not very familiar with the internals of the library. I am literally just a maintainer here accepting smaller PRs and updating dependencies every now and...

https://github.com/fsprojects/FAKE/issues/2641#issuecomment-1027815211 worked for me

I've tried overriding all the methods on a custom enricher and none of them were called. It seems to be a broader issue. That is version 12.6.0 and 12.7.0.

OK, so it looks like the issue is that the activity is null in [here](https://github.com/ChilliCream/hotchocolate/blob/main/src/HotChocolate/Diagnostics/src/Diagnostics/Listeners/ActivityExecutionDiagnosticListener.cs#L50). Following [this](https://github.com/dotnet/runtime/issues/45070#issuecomment-731770336) guidance I managed to get it working by adding the following code to...

@PascalSenn I think I am ready for a review.

Sure, it should be trivial. I'll take a look shortly.

OPA Server is already available as a Docker image. Does this work for you guys? https://hub.docker.com/r/openpolicyagent/opa/ Also, I'd probably should remove the embedded server from the tests though.

@cveld Try doing serialize instead. The below is F# code but it is similar to C#: ```fsharp let serializer = SerializerBuilder().Build(); let SaveFile (path:string) (yaml:YamlStream) = use file = File.Open(path,...

I've just encountered it today. Repro - docker build the below (running on Windows with Docker Desktop with WSL2 backend): ```Dockerfile FROM mcr.microsoft.com/dotnet/sdk:8.0 RUN echo -n "#r \"nuget: Amazon.CDK.Lib, 2.124.0\"...