Alluxio / k8s-operator

An operator for managing Alluxio system on Kubernetes cluster
https://www.alluxio.io/
Apache License 2.0
11 stars 9 forks source link

Use pointer for bool #68

Closed ssz1997 closed 1 year ago

ssz1997 commented 1 year ago

Json Marshal/Unmarshal would not work with bool value with omitempty. false is treated as empty and gets omitted in the final output. We also want to keep the fields optional to make sure ease of use. Use pointer to get correct output. https://stackoverflow.com/questions/37756236/json-golang-boolean-omitempty

ssz1997 commented 1 year ago

@Xenorith Could you help review this? Golang-related only.