Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point deprecated settings to the new location. #10522

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private static class Defaults {
* Defines the percentage of tasks to cancel relative to the number of successful task completions.
* In other words, it is the number of tokens added to the bucket on each successful task completion.
* <p>
* The setting below is deprecated.
* The setting below is deprecated. The new setting is in {@link SearchShardTaskSettings}.
* To keep backwards compatibility, the old usage is remained, and it's also used as the fallback for the new usage.
*/
public static final Setting<Double> SETTING_CANCELLATION_RATIO = Setting.doubleSetting(
Expand All @@ -72,7 +72,7 @@ private static class Defaults {
* Defines the number of tasks to cancel per unit time (in millis).
* In other words, it is the number of tokens added to the bucket each millisecond.
* <p>
* The setting below is deprecated.
* The setting below is deprecated. The new setting is in {@link SearchShardTaskSettings}.
* To keep backwards compatibility, the old usage is remained, and it's also used as the fallback for the new usage.
*/
public static final Setting<Double> SETTING_CANCELLATION_RATE = Setting.doubleSetting(
Expand All @@ -87,7 +87,7 @@ private static class Defaults {
/**
* Defines the maximum number of tasks that can be cancelled before being rate-limited.
* <p>
* The setting below is deprecated.
* The setting below is deprecated. The new setting is in {@link SearchShardTaskSettings}.
* To keep backwards compatibility, the old usage is remained, and it's also used as the fallback for the new usage.
*/
public static final Setting<Double> SETTING_CANCELLATION_BURST = Setting.doubleSetting(
Expand Down