Skip to content

Commit

Permalink
Fix imports in MinDocsCondition.java
Browse files Browse the repository at this point in the history
Signed-off-by: Almaz Shinbay <[email protected]>
  • Loading branch information
shinbay-almaz committed Sep 17, 2023
1 parent 8329048 commit 156a367
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@

package org.opensearch.action.admin.indices.rollover;

import org.opensearch.common.io.stream.StreamInput;
import org.opensearch.common.io.stream.StreamOutput;
import org.opensearch.core.common.io.stream.StreamInput;
import org.opensearch.core.common.io.stream.StreamOutput;
import org.opensearch.core.xcontent.XContentBuilder;
import org.opensearch.core.xcontent.XContentParser;

import java.io.IOException;

/**
* Condition for minimum index docs. Evaluates to <code>true</code>
* when the index has at least {@link #value} docs.
* Condition for minimum index docs.
* Evaluates to <code>true</code> when the index has at least {@link #value} docs.
* If it evaluates to <code>false</code> then it prevents rollover
*
* @opensearch.internal
Expand Down

0 comments on commit 156a367

Please sign in to comment.