Browse Source

Select scripting lang as groovy for older ES versions

tags/v1.0.0
Paul Bonser 9 years ago
parent
commit
06c82c2420
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      goes_test.go

+ 2
- 1
goes_test.go View File

@@ -1159,6 +1159,7 @@ func (s *GoesTestSuite) TestUpdate(c *C) {
// Now that we have an ordinary document indexed, try updating it
query := map[string]interface{}{
"script": "ctx._source.counter += count",
"lang": "groovy",
"params": map[string]interface{}{
"count": 5,
},
@@ -1170,7 +1171,7 @@ func (s *GoesTestSuite) TestUpdate(c *C) {
}

response, err = conn.Update(d, query, extraArgs)
if err != nil && strings.Contains(err.(*SearchError).Msg, "dynamic scripting disabled") {
if err != nil && strings.Contains(err.(*SearchError).Msg, "dynamic scripting") {
c.Skip("Scripting is disabled on server, skipping this test")
return
}


Loading…
Cancel
Save