Skip to content

Commit 2c20335

Browse files
committed
Fixed build failures
Signed-off-by: Kondaka <krishkdk@amazon.com>
1 parent 16ec595 commit 2c20335

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • data-prepper-core/src/integrationTest/java/org/opensearch/dataprepper/plugins

data-prepper-core/src/integrationTest/java/org/opensearch/dataprepper/plugins/InMemorySink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void output(final Collection<Record<Event>> records) {
4444
inMemorySinkAccessor.addEvents(testingKey, records);
4545
boolean result = inMemorySinkAccessor.getResult();
4646
if (doForward) {
47-
sinkContext.forwardRecords(records);
47+
sinkContext.forwardRecords(records, null, null);
4848
} else {
4949
records.stream().forEach((record) -> {
5050
EventHandle eventHandle = ((Event)record.getData()).getEventHandle();

0 commit comments

Comments
 (0)