You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We hadn't explicitly added YamlDotNet to our project and relied on the internal dependency provided by KubeClient, we ended up having a threading problem related to deserialization which got resolved by explicitly upgrading to a later version.
I came to realization to upgrade by checking YamlDotNet's code and I found out that the v6 implementation in some places are not async/threading friendly, our case was one of them.
The project works otherwise, so I'd imagine it's a safe upgrade.
The text was updated successfully, but these errors were encountered:
The project depends on YamlDotNet 6.1.2, where the latest is 11.2.1.
dotnet-kube-client/src/KubeClient/KubeClient.csproj
Line 17 in 11381a7
We hadn't explicitly added YamlDotNet to our project and relied on the internal dependency provided by KubeClient, we ended up having a threading problem related to deserialization which got resolved by explicitly upgrading to a later version.
I came to realization to upgrade by checking YamlDotNet's code and I found out that the v6 implementation in some places are not async/threading friendly, our case was one of them.
The project works otherwise, so I'd imagine it's a safe upgrade.
The text was updated successfully, but these errors were encountered: