Skip to content
This repository has been archived by the owner on Apr 20, 2020. It is now read-only.

String cast #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 @@ -302,7 +302,7 @@ private RestChannelConsumer handleIndexRequest(RestRequest restRequest, NodeClie
List<Double> vector = (List<Double>) source.get(VECTOR_KEY);
source.put(HASHES_KEY, lshModel.getVectorHashes(vector));
bulkIndexRequest.add(client
.prepareIndex(index, type, (String) doc.get("_id"))
.prepareIndex(index, type, doc.get("_id").toString())
.setSource(source));
}
stopWatch.stop();
Expand Down