Fix bug in AttributesTable stats

Summary: AttributesTable max_bucket_length was reported incorrectly.

Reviewed By: jvillard

Differential Revision: D3447241

fbshipit-source-id: a4e0242
master
Josh Berdine 9 years ago committed by Facebook Github Bot 8
parent 5ba5fcd4bb
commit 4e67ff6771

@ -136,7 +136,7 @@ let to_json at => {
[
("num_bindings", `Int at.num_bindings),
("num_buckets", `Int at.num_buckets),
("max_bucket_length", `Int at.num_buckets)
("max_bucket_length", `Int at.max_bucket_length)
]
@ extra_field
)

Loading…
Cancel
Save