Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
etspaceman committed Nov 8, 2024
1 parent 686f4bb commit b733517
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions integration-tests/src/test/scala/kinesis/mock/KCLTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class KCLTests extends AwsFunctionalTests {
)
isStarted <- Resource.eval(Deferred[IO, Unit])
defaultLeaseManagement = new LeaseManagementConfig(
appName,
appName,
dynamoClient,
resources.kinesisClient,
Expand Down Expand Up @@ -107,11 +108,11 @@ class KCLTests extends AwsFunctionalTests {
defaultLeaseManagement.cacheMissWarningModulus(),
defaultLeaseManagement.initialLeaseTableReadCapacity().toLong,
defaultLeaseManagement.initialLeaseTableWriteCapacity().toLong,
defaultLeaseManagement.hierarchicalShardSyncer(),
defaultLeaseManagement.tableCreatorCallback(),
defaultLeaseManagement.dynamoDbRequestTimeout(),
defaultLeaseManagement.billingMode(),
defaultLeaseManagement.leaseTableDeletionProtectionEnabled(),
defaultLeaseManagement.leaseTablePitrEnabled(),
defaultLeaseManagement.tags(),
new DynamoDBLeaseSerializer(),
defaultLeaseManagement.customShardDetectorProvider(),
Expand All @@ -121,7 +122,9 @@ class KCLTests extends AwsFunctionalTests {
.completedLeaseCleanupIntervalMillis(500L)
.garbageLeaseCleanupIntervalMillis(500L)
.leaseCleanupIntervalMillis(10.seconds.toMillis)
.build()
.build(),
defaultLeaseManagement.workerUtilizationAwareAssignmentConfig(),
defaultLeaseManagement.gracefulLeaseHandoffConfig()
)
)
scheduler <- Resource.eval(
Expand Down

0 comments on commit b733517

Please sign in to comment.