Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bidcompetition/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ dependencies {

// prometheus
implementation 'io.micrometer:micrometer-registry-prometheus'

// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'

// MSK 설치
implementation 'software.amazon.msk:aws-msk-iam-auth:2.2.0'
}

dependencyManagement {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public interface WinnerRepository {

Winner findById(UUID winnerId);

Winner findByIdempotencyKey(UUID idempotencyKey);
Winner findByIdempotencyKey(UUID bidId, UUID idempotencyKey);

Winner findByAllocationKey(UUID allocationKey);

Expand Down
Loading