We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eccc376 commit ae0cee4Copy full SHA for ae0cee4
server/src/main/java/org/elasticsearch/index/translog/Translog.java
@@ -73,6 +73,7 @@
73
import java.util.regex.Pattern;
74
import java.util.stream.Stream;
75
import java.util.zip.CRC32;
76
+import java.util.zip.CRC32C;
77
import java.util.zip.Checksum;
78
79
import static org.elasticsearch.core.Strings.format;
@@ -629,7 +630,7 @@ public Location add(final Operation operation) throws IOException {
629
630
Serialized serialized = Serialized.create(
631
header,
632
operation instanceof Index index ? ReleasableBytesReference.unwrap(index.source()) : null,
- new CRC32()
633
+ new CRC32C()
634
);
635
636
readLock.lock();
0 commit comments