Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
svroonland committed Nov 9, 2024
1 parent d6f485c commit 5ef97ef
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,8 @@ private[consumer] final class Runloop private (
pollResult <-
consumer.runloopAccess { c =>
for {
_ <- verifyAssignedStreamsMatchesAssignment(state.assignedStreams, c.assignment().asScala.toSet)
assignment <- ZIO.attempt(c.assignment())
_ <- verifyAssignedStreamsMatchesAssignment(state.assignedStreams, assignment.asScala.toSet)
resumeAndPauseCounts <- resumeAndPausePartitions(c, partitionsToFetch)
(toResumeCount, toPauseCount) = resumeAndPauseCounts

Expand Down

0 comments on commit 5ef97ef

Please sign in to comment.