Skip to content

Commit

Permalink
fix: auction의 getUserById메소드가 internals api를 사용하도록 수정한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Dec 2, 2024
1 parent ce2c618 commit 1234e48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RestIdentityApi(

override fun getUserById(userId: Long): IdentityApi.UserResponse {
return restClient.get()
.uri("/users/$userId")
.uri("/internals/users/$userId")
.header(INTERNAL_SECRET_KEY, internalSecret)
.exchange { _, response ->
runCatching {
Expand Down

0 comments on commit 1234e48

Please sign in to comment.