NIFI-11559 Increased poll time in CollisionAwareResourceProviderWorkerTest

- Incremental adjustment avoids breaking test on slower environments

This closes #7260

Signed-off-by: David Handermann <exceptionfactory@apache.org>
(cherry picked from commit ec01bce20786dfef0bd457fa7de8e04edbef9589)
This commit is contained in:
Bence Simon 2023-05-17 16:41:33 +02:00 committed by exceptionfactory
parent e78cf08fd5
commit 9cebdc2824
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA

View File

@ -245,7 +245,7 @@ public class CollisionAwareResourceProviderWorkerTest {
}
private void setUpTestSubject() {
testSubject = new CollisionAwareResourceProviderWorker(PREFIX, this.getClass().getClassLoader(), provider, conflictResolutionStrategy, TARGET_DIRECTORY, 50, new CountDownLatch(0));
testSubject = new CollisionAwareResourceProviderWorker(PREFIX, this.getClass().getClassLoader(), provider, conflictResolutionStrategy, TARGET_DIRECTORY, 150, new CountDownLatch(0));
}
private void setUpProviderWithResourceAndFetchSuccessSequence(final ExternalResourceDescriptor resource, final Boolean... fetchSuccessSequence) {