File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
driver/src/main/java/org/neo4j/driver/internal/reactive Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 26
26
import java .util .function .Supplier ;
27
27
28
28
import org .neo4j .driver .Record ;
29
+ import org .neo4j .driver .internal .cursor .RxStatementResultCursor ;
29
30
import org .neo4j .driver .internal .util .Futures ;
30
31
import org .neo4j .driver .reactive .RxStatementResult ;
31
- import org .neo4j .driver .internal .cursor .RxStatementResultCursor ;
32
32
import org .neo4j .driver .summary .ResultSummary ;
33
33
34
+ import static reactor .core .publisher .FluxSink .OverflowStrategy .IGNORE ;
35
+
34
36
public class InternalRxStatementResult implements RxStatementResult
35
37
{
36
38
private Supplier <CompletionStage <RxStatementResultCursor >> cursorFutureSupplier ;
@@ -83,7 +85,7 @@ else if ( e != null )
83
85
Throwable error = Futures .completionExceptionCause ( completionError );
84
86
sink .error ( error );
85
87
}
86
- } ) );
88
+ } ), IGNORE );
87
89
}
88
90
89
91
private CompletionStage <RxStatementResultCursor > getCursorFuture ()
You can’t perform that action at this time.
0 commit comments