Skip to content

Commit a3301d6

Browse files
Merge branch 'main' into undo-range-aggregation-spec
2 parents 7de3854 + 3f42a02 commit a3301d6

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

elasticsearch/_async/client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4745,7 +4745,8 @@ async def search(
47454745
limit the impact of the search on the cluster in order to limit the number
47464746
of concurrent shard requests.
47474747
:param min_score: The minimum `_score` for matching documents. Documents with
4748-
a lower `_score` are not included in the search results.
4748+
a lower `_score` are not included in search results and results collected
4749+
by aggregations.
47494750
:param pit: Limit the search to a point in time (PIT). If you provide a PIT,
47504751
you cannot specify an `<index>` in the request path.
47514752
:param post_filter: Use the `post_filter` parameter to filter search results.

elasticsearch/_async/client/async_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ async def submit(
401401
limit the impact of the search on the cluster in order to limit the number
402402
of concurrent shard requests
403403
:param min_score: Minimum _score for matching documents. Documents with a lower
404-
_score are not included in the search results.
404+
_score are not included in search results and results collected by aggregations.
405405
:param pit: Limits the search to a point in time (PIT). If you provide a PIT,
406406
you cannot specify an <index> in the request path.
407407
:param post_filter:

elasticsearch/_async/client/fleet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ async def search(
430430
:param lenient:
431431
:param max_concurrent_shard_requests:
432432
:param min_score: Minimum _score for matching documents. Documents with a lower
433-
_score are not included in the search results.
433+
_score are not included in search results and results collected by aggregations.
434434
:param pit: Limits the search to a point in time (PIT). If you provide a PIT,
435435
you cannot specify an <index> in the request path.
436436
:param post_filter:

elasticsearch/_sync/client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4743,7 +4743,8 @@ def search(
47434743
limit the impact of the search on the cluster in order to limit the number
47444744
of concurrent shard requests.
47454745
:param min_score: The minimum `_score` for matching documents. Documents with
4746-
a lower `_score` are not included in the search results.
4746+
a lower `_score` are not included in search results and results collected
4747+
by aggregations.
47474748
:param pit: Limit the search to a point in time (PIT). If you provide a PIT,
47484749
you cannot specify an `<index>` in the request path.
47494750
:param post_filter: Use the `post_filter` parameter to filter search results.

elasticsearch/_sync/client/async_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def submit(
401401
limit the impact of the search on the cluster in order to limit the number
402402
of concurrent shard requests
403403
:param min_score: Minimum _score for matching documents. Documents with a lower
404-
_score are not included in the search results.
404+
_score are not included in search results and results collected by aggregations.
405405
:param pit: Limits the search to a point in time (PIT). If you provide a PIT,
406406
you cannot specify an <index> in the request path.
407407
:param post_filter:

elasticsearch/_sync/client/fleet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def search(
430430
:param lenient:
431431
:param max_concurrent_shard_requests:
432432
:param min_score: Minimum _score for matching documents. Documents with a lower
433-
_score are not included in the search results.
433+
_score are not included in search results and results collected by aggregations.
434434
:param pit: Limits the search to a point in time (PIT). If you provide a PIT,
435435
you cannot specify an <index> in the request path.
436436
:param post_filter:

0 commit comments

Comments
 (0)