src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/AddSplits.java [37:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void visit(State state, RandWalkEnv env, Properties props) throws Exception {
    AccumuloClient client = env.getAccumuloClient();
    Random rand = state.getRandom();
    List<String> tableNames = new ArrayList<>(state.getTableNames());
    tableNames.add("accumulo.metadata");
    String tableName = tableNames.get(rand.nextInt(tableNames.size()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Merge.java [36:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void visit(State state, RandWalkEnv env, Properties props) throws Exception {
    AccumuloClient client = env.getAccumuloClient();
    Random rand = state.getRandom();
    List<String> tableNames = new ArrayList<>(state.getTableNames());
    tableNames.add("accumulo.metadata");
    String tableName = tableNames.get(rand.nextInt(tableNames.size()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



