Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public IndexMessageResponse clearScrollIds(Set<String> scrollIds) throws IOExcep
@Override
public IndexMessageResponse getDocSource(String indexName, String docId) throws IOException {

String url = baseUrl + indexName + "/_doc/" + docId + "/_source";
String url = baseUrl + indexName + "/_source/" + docId;// + "/_source";

Request request = new Request.Builder().url(url).get().build();
if (logger.isLoggable(DEBUG)) {
Expand Down