Skip to content

Commit

Permalink
Change: api/admin/recreate-indexでは再インデックスをしないように (kokonect-link#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
penginn-net authored Nov 5, 2024
1 parent c647faa commit ffe4ce6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_YOJO.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Cherrypick 4.11.1
- Fix: サーバー情報画面で公式タグを選択するとヘッダが公式タグのままになる不具合を修正 [#527](https://github.com/yojo-art/cherrypick/pull/527)

### Server
- Change: `api/admin/recreate-index`では再インデックスをしないように
- Fix: 高度な検索でノート本文に含まれないタグが検索対象外なのを修正
- Enhance: リモートユーザーの`/api/clips/show``/api/users/clips`の応答にemojisを追加 [#466](https://github.com/yojo-art/cherrypick/pull/466)
- Fix: Opensearch利用時ファイルのセンシティブ状態が変更されたとき変更されるように
Expand Down
4 changes: 2 additions & 2 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12027,11 +12027,11 @@ export interface Locale extends ILocale {
};
"_reCreateOpenSearchIndex": {
/**
* 現在のインデックスを破棄して再インデックスする
* ノートインデックスを破棄して再作成する
*/
"title": string;
/**
* 現在のインデックスを破棄して全てのノートを再インデックスしますか?
* 再作成しますか?、現時点のノートインデックスは破棄されます。
*/
"quesion": string;
};
Expand Down
4 changes: 2 additions & 2 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3210,8 +3210,8 @@ _reIndexOpenSearch:
quesion: "再インデックス対象"

_reCreateOpenSearchIndex:
title: "現在のインデックスを破棄して再インデックスする"
quesion: "現在のインデックスを破棄して全てのノートを再インデックスしますか?"
title: "ノートインデックスを破棄して再作成する"
quesion: "再作成しますか?、現時点のノートインデックスは破棄されます。"

_dice:
rollDice: "サイコロを振る"
Expand Down
9 changes: 2 additions & 7 deletions packages/backend/src/core/AdvancedSearchService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ export class AdvancedSearchService {
await this.opensearch.indices.delete({
index: this.opensearchNoteIndex as string }).catch((error) => {
this.logger.error(error);
return;
throw error;
});

await this.opensearch.indices.create({
Expand All @@ -507,15 +507,10 @@ export class AdvancedSearchService {
},
).catch((error) => {
this.logger.error(error);
return;
throw error;
});

await this.redisClient.del('indexDeleted');
this.logger.info('reIndexing.');
this.fullIndexNote().catch((error) => {
this.logger.error(error);
return;
});
}
}

Expand Down

0 comments on commit ffe4ce6

Please sign in to comment.