Tim Thacker
Tim Thacker
Getting the same error with Swarm.ListNodesAsync() in version 3.125.4
In this class here: https://github.com/dotnet/Docker.DotNet/blob/master/src/Docker.DotNet/Models/TLSInfo.Generated.cs CertIssuerSubject is a List It appears in the JSON returned from the docker engine as a string: "CertIssuerSubject": "MBMxETAPBgNVBAMTCHN3YXJtLWNh" Not sure why this is being...
The JSON models are generated, does anyone know how this is done? Or maybe the problem is we just need a JsonConverter for base64 to byte array
Yeah that will fix it, but I don't think that change would get merged in if you submitted a pull request. That class is code generated based off the docker...
I just submitted this pull request: https://github.com/dotnet/Docker.DotNet/pull/469 adding a simple json converter seems to have fixed the problem for me