Remove extensions to protobuf config checker messages (#27400)
* Remove extensions to protobuf config checker messages AFAICT these are never serialized/deserialized. Removing as they use a deprecated feature of protobuf (required fields in extensions) * Remove extensions from protobuf
This commit is contained in:
parent
75de45d9ef
commit
a2ecd915cb
12 changed files with 88 additions and 1294 deletions
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -12,3 +12,11 @@ ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.ClusterReadView
|
|||
|
||||
# Disable remote watch and remote deployment outside Cluster #26176
|
||||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.ClusterRemoteWatcher.props")
|
||||
|
||||
# Remove unused protobuf messages
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.cluster.protobuf.msg.ClusterMessages*")
|
||||
ProblemFilters.exclude[MissingTypesProblem]("akka.cluster.protobuf.msg.ClusterMessages$ConfigCheckOrBuilder")
|
||||
ProblemFilters.exclude[MissingTypesProblem]("akka.cluster.protobuf.msg.ClusterMessages$ConfigCheck$Builder")
|
||||
ProblemFilters.exclude[MissingTypesProblem]("akka.cluster.protobuf.msg.ClusterMessages$ConfigCheck")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -55,8 +55,6 @@ message InitJoinAck {
|
|||
}
|
||||
|
||||
message ConfigCheck {
|
||||
extensions 100 to 102;
|
||||
|
||||
enum Type {
|
||||
UncheckedConfig = 1;
|
||||
IncompatibleConfig = 2;
|
||||
|
|
@ -67,25 +65,6 @@ message ConfigCheck {
|
|||
optional string clusterConfig = 2;
|
||||
}
|
||||
|
||||
message UncheckedConfig {
|
||||
extend ConfigCheck {
|
||||
required UncheckedConfig checkConfig = 100;
|
||||
}
|
||||
}
|
||||
|
||||
message IncompatibleConfig {
|
||||
extend ConfigCheck {
|
||||
required IncompatibleConfig checkConfig = 101;
|
||||
}
|
||||
}
|
||||
|
||||
message CompatibleConfig {
|
||||
extend ConfigCheck {
|
||||
required CompatibleConfig checkConfig = 102;
|
||||
}
|
||||
required string clusterConfig = 2;
|
||||
}
|
||||
|
||||
/**
|
||||
* InitJoinNack
|
||||
* Sends an Address
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue