Skip to content

Commit 4a4c822

Browse files
committed
Temporarily disable testWriteRetryOnTwoExceptions
Issue #4370
1 parent 30e8766 commit 4a4c822

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spring-batch-core/src/test/java/org/springframework/batch/core/step/item/FaultTolerantChunkProcessorTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2008-2022 the original author or authors.
2+
* Copyright 2008-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,6 +27,7 @@
2727
import java.util.Set;
2828

2929
import org.junit.jupiter.api.BeforeEach;
30+
import org.junit.jupiter.api.Disabled;
3031
import org.junit.jupiter.api.Test;
3132
import org.springframework.batch.core.JobExecution;
3233
import org.springframework.batch.core.JobInstance;
@@ -402,6 +403,7 @@ public void write(Chunk<? extends String> chunk) throws Exception {
402403
}
403404

404405
@Test
406+
@Disabled("https://github.com/spring-projects/spring-batch/issues/4370")
405407
void testWriteRetryOnTwoExceptions() throws Exception {
406408
SimpleRetryPolicy retryPolicy = new SimpleRetryPolicy();
407409
retryPolicy.setMaxAttempts(2);

0 commit comments

Comments
 (0)