We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 700d5ba commit 342572fCopy full SHA for 342572f
search/includes/classes/class-search.php
@@ -11,7 +11,7 @@ class Search {
11
public const QUERY_INTEGRATION_FORCE_ENABLE_KEY = 'vip-search-enabled';
12
public const SEARCH_ALERT_SLACK_CHAT = '#vip-go-es-alerts';
13
public const SEARCH_ALERT_LEVEL = 2; // Level 2 = 'alert'
14
- public const MAX_RESULT_WINDOW = 9000;
+ public const MAX_RESULT_WINDOW = 10000;
15
/**
16
* Empty for now. Will flesh out once migration path discussions are underway and/or the same meta are added to the filter across many
17
* sites.
tests/search/test-class-search.php
@@ -2994,7 +2994,7 @@ public function limit_max_result_window_data() {
2994
],
2995
[
2996
'input' => 10000,
2997
- 'expected' => 9000,
+ 'expected' => 10000,
2998
2999
];
3000
}
0 commit comments