File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
server/src/main/java/org/elasticsearch/ingest Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,9 @@ public BytesReference getSerializedKeyBytes() {
7575 streamOutput .writeVInt (keys .size ());
7676 for (ESONEntry entry : keys ) {
7777 String key = entry .key () == null ? "" : entry .key ();
78- // byte[] bytes = key == null ? EMPTY_KEY : key.getBytes(StandardCharsets.UTF_8);
79- // streamOutput.writeVInt(bytes.length);
80- // streamOutput.writeBytes(bytes, 0, bytes.length);
78+ // byte[] bytes = key == null ? EMPTY_KEY : key.getBytes(StandardCharsets.UTF_8);
79+ // streamOutput.writeVInt(bytes.length);
80+ // streamOutput.writeBytes(bytes, 0, bytes.length);
8181 streamOutput .writeUTF8String (key );
8282 streamOutput .writeByte (entry .type ());
8383 streamOutput .writeInt (entry .offsetOrCount ());
You can’t perform that action at this time.
0 commit comments