summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java')
-rw-r--r--core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java b/core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java
index 6c9723b5b9..f28a98f488 100644
--- a/core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java
+++ b/core/src/main/java/org/elasticsearch/rest/action/document/RestIndexAction.java
@@ -86,7 +86,7 @@ public class RestIndexAction extends BaseRestHandler {
String sOpType = request.param("op_type");
if (sOpType != null) {
try {
- indexRequest.opType(IndexRequest.OpType.fromString(sOpType));
+ indexRequest.opType(sOpType);
} catch (IllegalArgumentException eia){
try {
XContentBuilder builder = channel.newErrorBuilder();