Skip to content

Commit

Permalink
Minor changes in HelixInstanceDataManagerConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackie-Jiang authored Sep 28, 2024
1 parent 40c68b5 commit 7720326
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public class HelixInstanceDataManagerConfig implements InstanceDataManagerConfig
private static final String EXTERNAL_VIEW_DROPPED_MAX_WAIT_MS = "external.view.dropped.max.wait.ms";
private static final String EXTERNAL_VIEW_DROPPED_CHECK_INTERVAL_MS = "external.view.dropped.check.interval.ms";

public static final String UPLOAD_SEGMENT_TO_DEEP_STORE = "segment.server.upload.to.deep.store";
public static final String UPLOAD_SEGMENT_TO_DEEP_STORE = "segment.upload.to.deep.store";
public static final boolean DEFAULT_UPLOAD_SEGMENT_TO_DEEP_STORE = false;

private final static String[] REQUIRED_KEYS = {INSTANCE_ID};
Expand Down Expand Up @@ -336,7 +336,6 @@ public Map<String, Map<String, String>> getTierConfigs() {

@Override
public boolean isUploadSegmentToDeepStore() {
return _serverConfig.getProperty(UPLOAD_SEGMENT_TO_DEEP_STORE,
DEFAULT_UPLOAD_SEGMENT_TO_DEEP_STORE);
return _serverConfig.getProperty(UPLOAD_SEGMENT_TO_DEEP_STORE, DEFAULT_UPLOAD_SEGMENT_TO_DEEP_STORE);
}
}

0 comments on commit 7720326

Please sign in to comment.