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 a6d380a commit b316f7d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +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=" + userFcmToken)
.baseUrl(alarmServerProperty.apiURL() + "/show-alarm/checked?fcmToken=")
.build()
.get()
.uri(userFcmToken)
.retrieve()
.toEntity(NotificationExistServiceResponse.class);

Expand Down

0 comments on commit b316f7d

Please sign in to comment.