diff --git a/arango/formatter.py b/arango/formatter.py index d90f5a87..ebbb070c 100644 --- a/arango/formatter.py +++ b/arango/formatter.py @@ -903,6 +903,10 @@ def format_view_consolidation_policy(body: Json) -> Json: result["segments_bytes_floor"] = body["segmentsBytesFloor"] if "minScore" in body: result["min_score"] = body["minScore"] + if "maxSkewThreshold" in body: + result["max_skew_threshold"] = body["maxSkewThreshold"] + if "minDeletionRatio" in body: + result["min_deletion_ratio"] = body["minDeletionRatio"] return verify_format(body, result)