소스 검색

ensure not to check ES version experimentally

Yuki Takei 6 년 전
부모
커밋
a09426e33e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/server/util/search.js

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

@@ -143,7 +143,8 @@ SearchClient.prototype.shouldIndexed = function(page) {
 };
 
 SearchClient.prototype.initIndices = async function() {
-  await this.checkESVersion();
+  // FIXME: comment out experimentally
+  // await this.checkESVersion();
 
   const { client, indexName, aliasName } = this;