Maxwell Keonwoo Kang
Maxwell Keonwoo Kang
I got this issue as well. I am running all-in-one Jaeger on Autopilot GKE. It works on local Docker Desktop Kubernetes environment. Debug logs from short-lived pod: ``` 2022-04-09T17:44:41.338740516Z |...
Whoops. I didn't know they fixed it. However the fix seems to applied only for `foreach` loop, not `for` loop. It might worth to add a warn for `for` loop?
It turned out some properties still need to be preserved. I added `PreserveAttribute` to prevent Unity code stripper to strip some properties.
Possible alternative approach: use the setter of the backing field instead when setter is stripped.
Will close this due to: * Json.NET won't support deserializing getter-only property (https://github.com/JamesNK/Newtonsoft.Json/issues/703) * Documentation about link.xml has been added
+1 for this too!
I tested it without default constraint, but I'm getting this error `MySqlException: Incorrect table definition; there can be only one auto column and it must be defined as a key`...
One of possible workarounds for now is using custom operation on migration script. https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/operations I've got to work by adding this line and commenting out AddColumn and AddUniqueConstraint: ```csharp migrationBuilder.Sql("ALTER...
This should be merged
> Any reason to remove this, rather than rename is properly to `pathVars`? This was my thought process: * If the values are identical to tokens from fileconfig, then there...