Alex Mitchell

Results 2 issues of Alex Mitchell

https://github.com/kubernetes-client/csharp/issues/1537 raised that deserialization (and serialization) is not currently thread-safe, due to concurrent access to the non-thread-safe `_stateMethods` dictionary in `DefaultObjectFactory`. This PR changes the nested inner `Dictionary`s in `_stateMethods`...

**Describe the bug** Concurrently deserializing or serializing the same type from multiple threads can fail. Example stack trace: ``` Operations that change non-concurrent collections must have exclusive access. A concurrent...