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.
@UpdateForV9
RepositoryConflictException
1 parent 0dfe5d1 commit 82484cbCopy full SHA for 82484cb
server/src/main/java/org/elasticsearch/repositories/RepositoryConflictException.java
@@ -29,14 +29,12 @@ public RestStatus status() {
29
return RestStatus.CONFLICT;
30
}
31
32
- @UpdateForV9(owner = UpdateForV9.Owner.DISTRIBUTED_COORDINATION) // drop unneeded string from wire format
33
public RepositoryConflictException(StreamInput in) throws IOException {
34
super(in);
35
in.readString();
36
37
38
@Override
39
40
protected void writeTo(StreamOutput out, Writer<Throwable> nestedExceptionsWriter) throws IOException {
41
super.writeTo(out, nestedExceptionsWriter);
42
out.writeString("");
0 commit comments