Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 2dac14c

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents 9d3b037 + 7349195 commit 2dac14c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: php
22

33
php:
4-
- 5.4
5-
- 5.5
64
- 5.6
75
- 7.0
86

core/src/plugins/index.elasticsearch/plugin_doc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- Create an index called "test_index":<br/>
1818
<pre>$ curl -XPUT 'localhost:9200/test_index'</pre><br/>
1919
- Then add a document with the type "test_type" with the following command:<br/>
20-
<pre>$ curl -XPUT 'localhost:9200/test_index/test_type/1 -d '{"user":"test", "message":"this is a test"}'</pre>
20+
<pre>$ curl -XPUT 'localhost:9200/test_index/test_type/1' -d '{"user":"test", "message":"this is a test"}'</pre>
2121
This will add a document with id equals to 1 containing two fields "user" and "message" that respective values are "test" and "this is a test".<br/>
2222
The document will be added in the index "test_index" under the type "test_type".<br/><br/>
2323
- You can retrieve the documents by their id:

0 commit comments

Comments
 (0)