Skip to content

Commit

Permalink
Fix loadJsonStream compiler error in dev (#3494)
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 committed Apr 28, 2023
1 parent d93bb52 commit 74eb7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extended/src/main/java/apoc/es/ElasticSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,6 @@ public Stream<MapResult> put(@Name("host") String hostOrKey, @Name("index") Stri
}

private static Stream<MapResult> loadJsonStream(@Name("url") Object url, @Name("headers") Map<String, Object> headers, @Name("payload") String payload) {
return LoadJsonUtils.loadJsonStream(url, headers, payload, "", true, null, null);
return LoadJsonUtils.loadJsonStream(url, headers, payload, "", true, null, null, null);
}
}

0 comments on commit 74eb7f5

Please sign in to comment.