Skip to content

Commit 682e1c2

Browse files
committed
Fixed test case
Signed-off-by: Sriram Ganesh <[email protected]>
1 parent 834a86f commit 682e1c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/opensearch/index/shard/IndexingStats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public Stats(StreamInput in) throws IOException {
177177
isThrottled = in.readBoolean();
178178
throttleTimeInMillis = in.readLong();
179179
if (in.getVersion().onOrAfter(Version.V_3_1_0)) {
180-
maxLastIndexRequestTimestamp = in.readZLong();
180+
maxLastIndexRequestTimestamp = in.readVLong();
181181
} else {
182182
maxLastIndexRequestTimestamp = 0L;
183183
}

0 commit comments

Comments
 (0)