This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
from ceaf8ca538 removes setting table prop in site config in
PerTableCryptoIT (#5921)
add 2c58d29249 Warn when fixed property set in resource group, other fixes
(#5865)
No new revisions were added by this update.
Summary of changes:
assemble/bin/accumulo-cluster | 38 ++++--
core/pom.xml | 4 +
.../core}/conf/cluster/ClusterConfigParser.java | 83 +++---------
.../conf/cluster/ClusterConfigParserTest.java | 72 ++++++-----
.../accumulo/core}/conf/cluster/2_1_cluster.yaml | 0
.../core}/conf/cluster/bad-group-name.yaml | 0
.../core}/conf/cluster/bad-group-suffix.yaml | 0
.../core}/conf/cluster/bad-server-name.yaml | 0
.../cluster/cluster-missing-compactor-group.yaml | 0
.../cluster/cluster-missing-tserver-group.yaml | 0
.../accumulo/core}/conf/cluster/cluster.yaml | 0
.../core}/conf/cluster/too-many-levels.yaml | 0
server/base/pom.xml | 4 -
.../server/conf/store/ResourceGroupPropKey.java | 4 +
.../accumulo/server/conf/util/ZooInfoViewer.java | 18 +++
.../apache/accumulo/server/init/Initialize.java | 37 +++++-
.../manager/ManagerClientServiceHandler.java | 3 -
.../accumulo/shell/commands/ConfigCommand.java | 16 +--
.../ClusterConfigParserIT_SimpleSuite.java | 139 ---------------------
19 files changed, 158 insertions(+), 260 deletions(-)
rename {server/base/src/main/java/org/apache/accumulo/server =>
core/src/main/java/org/apache/accumulo/core}/conf/cluster/ClusterConfigParser.java
(73%)
rename {server/base/src/test/java/org/apache/accumulo/server =>
core/src/test/java/org/apache/accumulo/core}/conf/cluster/ClusterConfigParserTest.java
(83%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/2_1_cluster.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/bad-group-name.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/bad-group-suffix.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/bad-server-name.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/cluster-missing-compactor-group.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/cluster-missing-tserver-group.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/cluster.yaml
(100%)
rename {server/base/src/test/resources/org/apache/accumulo/server =>
core/src/test/resources/org/apache/accumulo/core}/conf/cluster/too-many-levels.yaml
(100%)
delete mode 100644
test/src/main/java/org/apache/accumulo/test/functional/ClusterConfigParserIT_SimpleSuite.java