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 3d68f75 commit c666120Copy full SHA for c666120
server/src/main/java/org/elasticsearch/index/translog/Translog.java
@@ -72,7 +72,7 @@
72
import java.util.regex.Matcher;
73
import java.util.regex.Pattern;
74
import java.util.stream.Stream;
75
-import java.util.zip.CRC32C;
+import java.util.zip.CRC32;
76
import java.util.zip.Checksum;
77
78
import static org.elasticsearch.core.Strings.format;
@@ -629,7 +629,7 @@ public Location add(final Operation operation) throws IOException {
629
Serialized serialized = Serialized.create(
630
header,
631
operation instanceof Index index ? ReleasableBytesReference.unwrap(index.source()) : null,
632
- new CRC32C()
+ new CRC32()
633
);
634
635
readLock.lock();
0 commit comments