Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
fix checkstyle for long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ylwu-amzn committed Jan 22, 2020
1 parent 363daa6 commit ff190fa
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ private AnomalyDetectorSettings() {}
);

public static final Setting<Long> AD_RESULT_HISTORY_MAX_DOCS = Setting
.longSetting("opendistro.anomaly_detection.ad_result_history_max_docs", 10000L, 0L, Setting.Property.NodeScope, Setting.Property.Dynamic);
.longSetting("opendistro.anomaly_detection.ad_result_history_max_docs", 10000L, 0L,
Setting.Property.NodeScope, Setting.Property.Dynamic);

public static final Setting<Integer> MAX_RETRY_FOR_UNRESPONSIVE_NODE = Setting
.intSetting("opendistro.anomaly_detection.max_retry_for_unresponsive_node", 5, 0, Setting.Property.NodeScope, Setting.Property.Dynamic);
.intSetting("opendistro.anomaly_detection.max_retry_for_unresponsive_node", 5, 0,
Setting.Property.NodeScope, Setting.Property.Dynamic);

public static final Setting<TimeValue> COOLDOWN_MINUTES = Setting
.positiveTimeSetting(
Expand Down

0 comments on commit ff190fa

Please sign in to comment.