Skip to content
Merged
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
Expand Up @@ -22,7 +22,7 @@
import org.elasticsearch.action.ActionType;

/**
* Unregister repository action
* Verify repository action
*/
public class VerifyRepositoryAction extends ActionType<VerifyRepositoryResponse> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
import static org.elasticsearch.action.ValidateActions.addValidationError;

/**
* Unregister repository request.
* <p>
* The unregister repository command just unregisters the repository. No data is getting deleted from the repository.
* Verify repository request.
*/
public class VerifyRepositoryRequest extends AcknowledgedRequest<VerifyRepositoryRequest> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.elasticsearch.client.ElasticsearchClient;

/**
* Builder for unregister repository request
* Builder for verify repository request
*/
public class VerifyRepositoryRequestBuilder
extends MasterNodeOperationRequestBuilder<VerifyRepositoryRequest, VerifyRepositoryResponse, VerifyRepositoryRequestBuilder> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

/**
* Represents a single item response for an action executed as part of the bulk API. Holds the index/type/id
* of the relevant action, and if it has failed or not (with the failure message incase it failed).
* of the relevant action, and if it has failed or not (with the failure message in case it failed).
*/
public class BulkItemResponse implements Writeable, StatusToXContentObject {

Expand Down