Skip to content
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

2024.8.0-munochi.9 #12

Merged
merged 25 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
36713ba
[refactor: frontend, note editing] merge both history sub content com…
kdh8219 Sep 6, 2024
89db5d7
[refactor: fronend, note editing] move some codes
kdh8219 Sep 7, 2024
700643a
[fix: frontend, note editing] change default value of collapsed
kdh8219 Sep 8, 2024
380f7df
[chore: frontend, note editing] lint 'scripts/get-note-history.ts'
kdh8219 Sep 8, 2024
fb2337c
Merge pull request #10 from kdh8219/refactor/yunochi/raw-diff-2
yunochi Sep 8, 2024
7d20d43
fix lint
yunochi Sep 8, 2024
0ae980f
♻️ refactor avatardecoration service
yunochi Sep 8, 2024
1ae2473
Sign in with passkey (PoC)
yunochi Sep 12, 2024
afe9709
💄 Added "Login with Passkey" Button
Squarecat-meow Sep 12, 2024
748c139
WebAuthn챌린지에 실패한 경우의 오류 응답 개선
yunochi Sep 12, 2024
58374b1
signinResponse 는 SigninWithPasskeyResponse 의 아래에 넣도록
yunochi Sep 12, 2024
e932673
프론트 fix
yunochi Sep 12, 2024
c6a957b
Fix: Rate limiting key for passkey signin
yunochi Sep 13, 2024
5e38de3
feat(passkey): enhance Passkey sign-in flow and error handling
yunochi Sep 13, 2024
30998ea
Refactor: Streamline 2FA flow and remove redundant Passkey button.
yunochi Sep 13, 2024
3edee7c
💄 added error messages to MkSignin
Squarecat-meow Sep 15, 2024
d9fc000
✏️ added missing break in case statement
Squarecat-meow Sep 15, 2024
708a747
🚨 fix semicolon warning
Squarecat-meow Sep 16, 2024
d286426
Merge pull request #11 from yunochi/passkey-signin
yunochi Sep 16, 2024
6c085e4
비 로그인 유저에게 에러 대신 빈 연합 목록을 반환하도록 수정
yunochi Sep 16, 2024
2b929a8
inbox Queue에서 발생하는 자세한 renderError를 debug레벨로 낮춤
yunochi Sep 16, 2024
f1f2051
큐 failed시 renderError는 debug로 출력하도록 (로그가 너무 시끄러움)
yunochi Sep 16, 2024
80014f7
use LIKE search instead ILIKE (to use pg_bigm index)
yunochi Sep 16, 2024
66a261f
Add Dockerfile for pg_bigm
yunochi Sep 16, 2024
068661d
2024.8.0-munochi.9
yunochi Sep 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
큐 failed시 renderError는 debug로 출력하도록 (로그가 너무 시끄러움)
yunochi committed Sep 16, 2024

Verified

This commit was signed with the committer’s verified signature.
yunochi Yuri Lee
commit f1f205135c42b02bcaaaff0f75ad7d1d69707837
6 changes: 4 additions & 2 deletions packages/backend/src/queue/QueueProcessorService.ts
Original file line number Diff line number Diff line change
@@ -169,7 +169,8 @@ export class QueueProcessorService implements OnApplicationShutdown {
.on('active', (job) => logger.debug(`active id=${job.id}`))
.on('completed', (job, result) => logger.debug(`completed(${result}) id=${job.id}`))
.on('failed', (job, err: Error) => {
logger.error(`failed(${err.stack}) id=${job ? job.id : '-'}`, { job, e: renderError(err) });
logger.error(`failed(${err.stack}) id=${job ? job.id : '-'}`);
logger.debug(`failed(${err.stack}) id=${job ? job.id : '-'}`, { job, e: renderError(err) });
if (config.sentryForBackend) {
Sentry.captureMessage(`Queue: System: ${job?.name ?? '?'}: ${err.message}`, {
level: 'error',
@@ -226,7 +227,8 @@ export class QueueProcessorService implements OnApplicationShutdown {
.on('active', (job) => logger.debug(`active id=${job.id}`))
.on('completed', (job, result) => logger.debug(`completed(${result}) id=${job.id}`))
.on('failed', (job, err) => {
logger.error(`failed(${err.stack}) id=${job ? job.id : '-'}`, { job, e: renderError(err) });
logger.error(`failed(${err.stack}) id=${job ? job.id : '-'}`);
logger.debug(`failed(${err.stack}) id=${job ? job.id : '-'}`, { job, e: renderError(err) });
if (config.sentryForBackend) {
Sentry.captureMessage(`Queue: DB: ${job?.name ?? '?'}: ${err.message}`, {
level: 'error',