You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2021/05/01 23:15:40 UTC

[GitHub] [accumulo] EdColeman commented on issue #2070: Broken or Flaky test: ShellServerIT

EdColeman commented on issue #2070:
URL: https://github.com/apache/accumulo/issues/2070#issuecomment-830707694


   The issue with the durability test appears to be that the table is scheduled for deletion about as soon as it is created, but the test method is still in progress.  The table deletion was being performed as a test after action - but deleted all tables.  Moving the clean-up to afterclass so it executes once, at the end of the test seems to have fixed that issue.  
   `
   2021-05-01T18:28:12,663 [accumulo.audit] INFO : operation: permitted; user: root; client: 127.0.0.1:44432; action: createTable; targetTable: durability_56910565297912;
   ...
   2021-05-01T18:28:12,685 [tables.TableManager] DEBUG: Creating ZooKeeper entries for new table durability_56910565297912 (ID: 1o) in namespace (ID: +default)
   ...
   2021-05-01T18:28:12,713 [manager.EventCoordinator] INFO : Created table durability_56910565297912 
   ...
   2021-05-01T18:28:13,454 [accumulo.audit] INFO : operation: permitted; user: root; client: 127.0.0.1:44432; action: deleteTable; targetTable: durability_56910565297912;
   `
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org