This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new ceaf8ca538 removes setting table prop in site config in 
PerTableCryptoIT (#5921)
ceaf8ca538 is described below

commit ceaf8ca53884e6de388b47c75eada2fd523dcb76
Author: Keith Turner <[email protected]>
AuthorDate: Tue Sep 23 12:32:30 2025 -0400

    removes setting table prop in site config in PerTableCryptoIT (#5921)
    
    PerTableCryptoIT was setting a table prop when it did not need to and
    this was failing.  Removed setting the table prop and since the test
    already set the general prop for the crypto service to AES the test
    works w/o any additional changes.
    
    follow up for #5886
---
 .../main/java/org/apache/accumulo/test/functional/PerTableCryptoIT.java | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/PerTableCryptoIT.java 
b/test/src/main/java/org/apache/accumulo/test/functional/PerTableCryptoIT.java
index 43592dab53..0e145df4bb 100644
--- 
a/test/src/main/java/org/apache/accumulo/test/functional/PerTableCryptoIT.java
+++ 
b/test/src/main/java/org/apache/accumulo/test/functional/PerTableCryptoIT.java
@@ -193,8 +193,6 @@ public class PerTableCryptoIT extends 
AccumuloClusterHarness {
               args.add(new Path(hadoopConfDir, "hdfs-site.xml").toString());
             }
             args.add("-o");
-            args.add(TABLE_SERVICE_NAME_PROP + "=" + 
AESCryptoService.class.getName());
-            args.add("-o");
             args.add(INSTANCE_CRYPTO_FACTORY + "=" + 
GenericCryptoServiceFactory.class.getName());
             log.info("Invoking PrintInfo with {}", args);
             
org.apache.accumulo.core.file.rfile.PrintInfo.main(args.toArray(new String[0]));

Reply via email to