Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
penginn-net committed Nov 5, 2024
1 parent d1ad89e commit e02a2af
Show file tree
Hide file tree
Showing 5 changed files with 8 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`では再インデックスをしないように
- Enhance: リモートユーザーの`/api/clips/show``/api/users/clips`の応答にemojisを追加 [#466](https://github.com/yojo-art/cherrypick/pull/466)
- Fix: Opensearch利用時ファイルのセンシティブ状態が変更されたとき変更されるように
- Change: `notes/advanced-search``query`が必須ではなくなりました
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
1 change: 1 addition & 0 deletions packages/frontend/src/pages/admin/other-settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ async function reIndex() {
const { canceled } = await os.confirm({
type: 'warning',
text: i18n.ts._reCreateOpenSearchIndex.quesion,
description: i18n.ts._reCreateOpenSearchIndex.description,
okText: i18n.ts.yes,
cancelText: i18n.ts.no,
});
Expand Down

0 comments on commit e02a2af

Please sign in to comment.