Browse Source

Merge branch 'master' into feat/crop-uploaded-image

yusuketk 6 years ago
parent
commit
9cc967ad80
3 changed files with 8 additions and 3 deletions
  1. 6 1
      CHANGES.md
  2. 1 1
      package.json
  3. 1 1
      src/server/util/search.js

+ 6 - 1
CHANGES.md

@@ -1,9 +1,14 @@
 # CHANGES
 
-## 3.5.16-RC
+## 3.5.17-RC
 
 * 
 
+## 3.5.16
+
+* Fix: Full Text Search doesn't work after when building indices
+    * Introduced by 3.5.12
+
 ## 3.5.15
 
 * Feature: Import/Export Page data

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "growi",
-  "version": "3.5.16-RC",
+  "version": "3.5.17-RC",
   "description": "Team collaboration software using markdown",
   "tags": [
     "wiki",

+ 1 - 1
src/server/util/search.js

@@ -264,7 +264,7 @@ SearchClient.prototype.prepareBodyForCreate = function(body, page) {
 
   const command = {
     index: {
-      _index: this.aliasName,
+      _index: this.indexName,
       _type: 'pages',
       _id: page._id.toString(),
     },