-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
「フォローしているユーザーのファイル付きノートのみ含まれる」e2eテストがタイムアウトする #15076
Labels
Milestone
Comments
そもそもなぜタイムアウトするほど時間が掛かっているかの調査をするのが先かもしれません。 |
kakkokari-gtyih
added
❓needs more investigation
A bug whose causes are unknown
and removed
⚠️bug?
This might be a bug
labels
Dec 9, 2024
5 tasks
#15282 のようにactionsでも落ちるようになった |
5 tasks
Issue起票当時もActionsでも落ちるときがあった記憶 |
(#15282 の文脈から) ざっくりとこんな感じのコードを書いてログ出力の時間を計測してみました。 const logger = new MyCustomLogger({ disableQueryTruncation: true });
test('logQuery', () => {
const query = 'metaテーブルをselectする長いクエリ'
const start = new Date().getTime();
for (let i = 0; i < 1000; i++) {
logger.logQuery(query, []);
}
const end = new Date().getTime();
console.log(`Time: ${end - start}ms`);
});
「highlightSqlしてからtruncateSql」は今までのロジックで、 #15268 以降「truncateSqlしてからhighlightSql」に変わっています。 |
5 tasks
(とりあえず、 #15283 を暫定対処として取り込んでしまいたい気持ち) |
logのハイライト関係ないのか...謎だな... とりあえず取り込んじゃっていいと思う |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
💡 Summary
e2eテストで「フォローしているユーザーのファイル付きノートのみ含まれる」が正常であってもマシンスペックなどの事情によりタイムアウト(10s)する。
🥰 Expected Behavior
正常な場合にタイムアウトしない
🤬 Actual Behavior
タイムアウトする
📝 Steps to Reproduce
💻 Frontend Environment
🛰 Backend Environment (for server admin)
Do you want to address this bug yourself?
The text was updated successfully, but these errors were encountered: