Skip to content

Commit

Permalink
kafka: fix incorrect rebalanceTimeoutMs for new members
Browse files Browse the repository at this point in the history
  • Loading branch information
Commelina committed Apr 30, 2024
1 parent fb798f0 commit 5f1c0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hstream-kafka/HStream/Kafka/Group/Member.hs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ data Member
newMemberFromReq :: K.RequestContext -> K.JoinGroupRequest -> T.Text -> [(T.Text, BS.ByteString)] -> IO Member
newMemberFromReq reqCtx req memberId supportedProtocols = do
sessionTimeoutMs <- IO.newIORef req.sessionTimeoutMs
rebalanceTimeoutMs <- IO.newIORef req.sessionTimeoutMs
rebalanceTimeoutMs <- IO.newIORef req.rebalanceTimeoutMs

assignment <- IO.newIORef BS.empty

Expand Down

0 comments on commit 5f1c0c1

Please sign in to comment.