Skip to content

Commit bd79fdd

Browse files
committed
Migrate to Reactor Schedulers.boundedElastic() API.
Closes #1264.
1 parent 1371ec8 commit bd79fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-cassandra/src/test/java/org/springframework/data/cassandra/core/ReactiveCassandraBatchTemplateIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ void shouldSupportMultithreadedMerge() {
401401
batchOperations.insert(Mono.just(Arrays.asList(new Group(new GroupKey("users", "0x1", "walter" + random.longs())),
402402
new Group(new GroupKey("users", "0x1", "walter" + random.longs())),
403403
new Group(new GroupKey("users", "0x1", "walter" + random.longs())),
404-
new Group(new GroupKey("users", "0x1", "walter" + random.longs())))).publishOn(Schedulers.elastic()));
404+
new Group(new GroupKey("users", "0x1", "walter" + random.longs())))).publishOn(Schedulers.boundedElastic()));
405405
}
406406

407407
batchOperations.execute()

0 commit comments

Comments
 (0)