Skip to content
Open
Show file tree
Hide file tree
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
@@ -0,0 +1,7 @@
title: Remove the deprecated CollectionAdminRequest.CreateTimeRoutedAlias.setMaxFutureMs(Integer) overload; use setMaxFutureMs(Long) instead.
type: removed
authors:
- name: Serhiy Bzhezytskyy
links:
- name: SOLR-18359
url: https://issues.apache.org/jira/browse/SOLR-18359
Original file line number Diff line number Diff line change
Expand Up @@ -2070,17 +2070,6 @@ public CreateTimeRoutedAlias setTimeZone(TimeZone tz) {
return this;
}

/**
* Sets how long into the future (millis) that we will allow a document to pass.
*
* @deprecated Please use {@link #setMaxFutureMs(Long)} instead.
*/
@Deprecated
public CreateTimeRoutedAlias setMaxFutureMs(Integer maxFutureMs) {
this.maxFutureMs = Long.valueOf(maxFutureMs);
return this;
}

/** Sets how long into the future (millis) that we will allow a document to pass. */
public CreateTimeRoutedAlias setMaxFutureMs(Long maxFutureMs) {
this.maxFutureMs = maxFutureMs;
Expand Down
Loading