Skip to content

Commit

Permalink
fix: restclient 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Nov 12, 2024
1 parent b316f7d commit 3b66617
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public NotificationExistServiceResponse getNotificationExist(UUID userId) {
log.info("{}/show-alarm/checked?fcmToken={}", alarmServerProperty.apiURL(), userFcmToken);

ResponseEntity<NotificationExistServiceResponse> result = RestClient.builder()
.baseUrl(alarmServerProperty.apiURL() + "/show-alarm/checked?fcmToken=")
.baseUrl(alarmServerProperty.apiURL() + "/show-alarm/checked")
.build()
.get()
.uri(userFcmToken)
.uri("?fcmToken=" + userFcmToken)
.retrieve()
.toEntity(NotificationExistServiceResponse.class);

Expand Down

0 comments on commit 3b66617

Please sign in to comment.