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
Unmarshaling a workflow with an Event state that has an unspecified 'exclusive' field. The value for the field is 'false'.
What you expected to happen:
The spec states that the default value for 'exclusive' should be 'true'.
Anything else we need to know?:
If a key is missing in JSON Go will unmarshal it to the type's default value. The default value for a boolean in Go is false. To fix this you could either change the field to a pointer to a bool or write a custom json unmarshaler for the struct.