We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f94a7ee commit 5b498f8Copy full SHA for 5b498f8
pom.xml
@@ -27,7 +27,7 @@
27
<project.type>multi</project.type>
28
<dist.id>spring-data-mongodb</dist.id>
29
<springdata.commons>2.6.0-SNAPSHOT</springdata.commons>
30
- <mongo>4.4.0-beta1</mongo>
+ <mongo>4.4.0</mongo>
31
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
32
<jmh.version>1.19</jmh.version>
33
</properties>
spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/MongoTemplateUnitTests.java
@@ -2558,6 +2558,11 @@ public T next() {
2558
return iterator.next();
2559
}
2560
2561
+ @Override
2562
+ public int available() {
2563
+ return 1;
2564
+ }
2565
+
2566
@Override
2567
public T tryNext() {
2568
if (iterator.hasNext()) {
0 commit comments