Skip to content

Commit 939a3f0

Browse files
committed
Added changes suggested by Jakub
Signed-off-by: ShubhamRwt <[email protected]>
1 parent 93355d6 commit 939a3f0

File tree

3 files changed

+2
-42
lines changed

3 files changed

+2
-42
lines changed

docker-images/artifacts/kafka-thirdparty-libs/3.9.x/pom.xml

-20
Original file line numberDiff line numberDiff line change
@@ -289,26 +289,6 @@
289289
<groupId>org.apache.kafka</groupId>
290290
<artifactId>kafka-server</artifactId>
291291
</exclusion>
292-
<exclusion>
293-
<groupId>org.apache.kafka</groupId>
294-
<artifactId>kafka-server-common</artifactId>
295-
</exclusion>
296-
<exclusion>
297-
<groupId>org.apache.kafka</groupId>
298-
<artifactId>kafka-metadata</artifactId>
299-
</exclusion>
300-
<exclusion>
301-
<groupId>org.apache.kafka</groupId>
302-
<artifactId>kafka-raft</artifactId>
303-
</exclusion>
304-
<exclusion>
305-
<groupId>org.apache.kafka</groupId>
306-
<artifactId>kafka-group-coordinator</artifactId>
307-
</exclusion>
308-
<exclusion>
309-
<groupId>org.apache.kafka</groupId>
310-
<artifactId>kafka-storage</artifactId>
311-
</exclusion>
312292
<exclusion>
313293
<groupId>org.slf4j</groupId>
314294
<artifactId>slf4j-api</artifactId>

docker-images/artifacts/kafka-thirdparty-libs/4.0.x/pom.xml

-20
Original file line numberDiff line numberDiff line change
@@ -282,26 +282,6 @@
282282
<groupId>org.apache.kafka</groupId>
283283
<artifactId>kafka-server</artifactId>
284284
</exclusion>
285-
<exclusion>
286-
<groupId>org.apache.kafka</groupId>
287-
<artifactId>kafka-server-common</artifactId>
288-
</exclusion>
289-
<exclusion>
290-
<groupId>org.apache.kafka</groupId>
291-
<artifactId>kafka-metadata</artifactId>
292-
</exclusion>
293-
<exclusion>
294-
<groupId>org.apache.kafka</groupId>
295-
<artifactId>kafka-raft</artifactId>
296-
</exclusion>
297-
<exclusion>
298-
<groupId>org.apache.kafka</groupId>
299-
<artifactId>kafka-group-coordinator</artifactId>
300-
</exclusion>
301-
<exclusion>
302-
<groupId>org.apache.kafka</groupId>
303-
<artifactId>kafka-storage</artifactId>
304-
</exclusion>
305285
<exclusion>
306286
<groupId>org.slf4j</groupId>
307287
<artifactId>slf4j-api</artifactId>

systemtest/src/test/java/io/strimzi/systemtest/log/LoggingChangeST.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2194,8 +2194,8 @@ void testLoggingHierarchy() {
21942194
}
21952195
)
21962196
void testChangingInternalToExternalLoggingTriggerRollingUpdate() {
2197-
// This test only works with Kafka 3.9.0 since Kafka 4.0.0 uses Log4j2 which provides dynamic logging changes for the brokers.
2198-
// This test can be removed once Kafka 3.9.0 is dropped from support.
2197+
// This test would need some changes since Kafka 4.0.0 uses Log4j2 which provides dynamic logging changes for the brokers and is therefore disabled.
2198+
// This test can be enabled again once we fix the issue: https://github.com/strimzi/strimzi-kafka-operator/issues/11312
21992199
Assumptions.assumeTrue(TestKafkaVersion.compareDottedVersions(Environment.ST_KAFKA_VERSION, "4.0.0") < 0);
22002200

22012201
final TestStorage testStorage = new TestStorage(ResourceManager.getTestContext());

0 commit comments

Comments
 (0)