We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
종목 지정가 도달 알림 간격을 24H으로 설정했음에도 불구하고 지정가에 도달할때마다 알림을 보냅니다.
종목 지정가 알림 전송 이력을 저장할때 TargetPriceNotification 엔티티의 PK 등록번호(id)를 저장해야 했으나, 사용자에게 전달한 푸시 알림의 등록번호(Notification.id)를 저장하여서 알림을 계속 보냈습니다.
// 발송 이력 저장 .map(future -> future.thenCompose(item -> { // todo: targetPriceNotificationId를 저장해야 한다. sentManager.addTargetPriceNotification(item.getNotificationId()); return CompletableFuture.supplyAsync(() -> item); }))
종목 지정가 알림 전송 이력 저장시 TargetPriceNotification.id를 저장합니다.
// 발송 이력 저장 .map(future -> future.thenCompose(item -> { sentManager.addTargetPriceNotification(item.getTargetPriceNotificationId()); return CompletableFuture.supplyAsync(() -> item); }))
The text was updated successfully, but these errors were encountered:
yonghwankim-dev
Successfully merging a pull request may close this issue.
상황
종목 지정가 도달 알림 간격을 24H으로 설정했음에도 불구하고 지정가에 도달할때마다 알림을 보냅니다.
원인
종목 지정가 알림 전송 이력을 저장할때 TargetPriceNotification 엔티티의 PK 등록번호(id)를 저장해야 했으나, 사용자에게 전달한 푸시 알림의 등록번호(Notification.id)를 저장하여서 알림을 계속 보냈습니다.
해결방법
종목 지정가 알림 전송 이력 저장시 TargetPriceNotification.id를 저장합니다.
The text was updated successfully, but these errors were encountered: