lianetm commented on code in PR #16810:
URL: https://github.com/apache/kafka/pull/16810#discussion_r1707722728
##########
core/src/test/scala/unit/kafka/server/JoinGroupRequestTest.scala:
##########
@@ -36,13 +36,14 @@ import scala.concurrent.duration.Duration
import scala.concurrent.{Await, Future}
import scala.jdk.CollectionConverters._
-@Timeout(120)
+@Timeout(30)
@ExtendWith(value = Array(classOf[ClusterTestExtensions]))
class JoinGroupRequestTest(cluster: ClusterInstance) extends
GroupCoordinatorBaseRequestTest(cluster) {
@ClusterTest(types = Array(Type.KRAFT), serverProperties = Array(
new ClusterConfigProperty(key = "group.coordinator.new.enable", value =
"true"),
new ClusterConfigProperty(key = "offsets.topic.num.partitions", value =
"1"),
- new ClusterConfigProperty(key = "offsets.topic.replication.factor", value
= "1")
+ new ClusterConfigProperty(key = "offsets.topic.replication.factor", value
= "1"),
+ new ClusterConfigProperty(key = "group.initial.rebalance.delay.ms", value
= "0"),
Review Comment:
Interesting finding, makes sense to me for the test. I expect it would it be
helpful to add it also in the other test in this file, right?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]