This is an automated email from the ASF dual-hosted git repository. cshannon pushed a change to branch no-chop-merge in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 5954c4ca6b Merge branch 'main' into no-chop-merge add 293e304945 Validate that classloader context is valid when property is set (#3678) add b6add6cac3 Prevent setting deprecated properties in the shell unless forced (#3680) add 333e94604d Revert "Validate that classloader context is valid when property is set (#3678)" add adcb2d8ac7 Validate that classloader context when property is set (#3683) add 92af41860e run minor compaction earlier in tablet close (#3685) add e3e4c26e65 Attempt to prevent half-closed Tablet due to failing minc (#3677) add fca29a9f85 Merge branch '2.1' new f67baefba1 Merge branch 'main' into no-chop-merge The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../accumulo/core/classloader/ClassLoaderUtil.java | 19 ++ .../core/conf/ConfigurationTypeHelper.java | 2 +- .../core/spi/common/ContextClassLoaderFactory.java | 4 +- .../accumulo/server/conf/TableConfiguration.java | 8 + .../org/apache/accumulo/server/util/PropUtil.java | 15 +- .../accumulo/server/util/SystemPropUtil.java | 19 +- .../accumulo/tserver/TabletClientHandler.java | 3 + .../accumulo/tserver/tablet/CompactableImpl.java | 7 + .../tserver/tablet/MinorCompactionTask.java | 9 +- .../org/apache/accumulo/tserver/tablet/Tablet.java | 78 ++++-- .../accumulo/shell/commands/ConfigCommand.java | 31 ++- .../test/functional/HalfClosedTablet2IT.java | 121 +++++++++ .../test/functional/HalfClosedTabletIT.java | 282 +++++++++++++++++++++ .../org/apache/accumulo/test/shell/ShellIT.java | 16 +- .../apache/accumulo/test/shell/ShellServerIT.java | 79 ++++++ 15 files changed, 651 insertions(+), 42 deletions(-) create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/HalfClosedTablet2IT.java create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/HalfClosedTabletIT.java