Skip to content

Commit

Permalink
Merge pull request #37 from Y-edu/develop
Browse files Browse the repository at this point in the history
Deploy
  • Loading branch information
ywj9811 authored Feb 11, 2025
2 parents 1386bb9 + e1db8cc commit b4389f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class BizppurioSend {

protected Mono<Void> sendMessageWithExceptionHandling(Supplier<CommonRequest> messageSupplier) {
try {
log.info("알림톡 발송 : {}", messageSupplier.get().to());
CommonRequest commonRequest = messageSupplier.get();
String accessToken = bizppurioAuth.getAuth();
String request = objectMapper.writeValueAsString(commonRequest);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class BizppurioTeacherMessage {

public void counselStartAndPhotoSubmit(Teacher teacher) {
bizppurioSend.sendMessageWithExceptionHandling(() -> bizppurioMapper.mapToCounselStart(teacher))
.then(photoSubmit(teacher))
.then(Mono.defer(() -> photoSubmit(teacher)))
.subscribe();
}

Expand Down

0 comments on commit b4389f1

Please sign in to comment.