Set managedField probability to 0%

Lowers probability of managedField population on create/update to 0%
until serialization/normalization issues are resolved
This commit is contained in:
Jordan Liggitt 2020-01-14 14:47:35 -05:00
parent be26fbc638
commit ba23aa98f6

View File

@ -35,7 +35,7 @@ const DefaultMaxUpdateManagers int = 10
// DefaultTrackOnCreateProbability defines the default probability that the field management of an object // DefaultTrackOnCreateProbability defines the default probability that the field management of an object
// starts being tracked from the object's creation, instead of from the first time the object is applied to. // starts being tracked from the object's creation, instead of from the first time the object is applied to.
const DefaultTrackOnCreateProbability float32 = 0.5 const DefaultTrackOnCreateProbability float32 = 0.0
// Managed groups a fieldpath.ManagedFields together with the timestamps associated with each operation. // Managed groups a fieldpath.ManagedFields together with the timestamps associated with each operation.
type Managed interface { type Managed interface {