You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2019/04/03 16:20:49 UTC

[accumulo] branch master updated: Minor fix to javadoc in AccumuloOutputFormat

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 214727f  Minor fix to javadoc in AccumuloOutputFormat
214727f is described below

commit 214727fd7dc920660f310c2eefa467a238898dfd
Author: Mike Miller <mm...@apache.org>
AuthorDate: Wed Apr 3 12:20:17 2019 -0400

    Minor fix to javadoc in AccumuloOutputFormat
---
 .../org/apache/accumulo/hadoop/mapreduce/AccumuloOutputFormat.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloOutputFormat.java b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloOutputFormat.java
index 54dd193..f06a634 100644
--- a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloOutputFormat.java
+++ b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloOutputFormat.java
@@ -46,8 +46,8 @@ import org.apache.hadoop.mapreduce.lib.output.NullOutputFormat;
  *
  * <pre>
  * AccumuloOutputFormat.configure().clientProperties(props).batchWriterOptions(bwConfig)
- *     .defaultTable(name).createTables() // disabled by default
- *     .simulationMode() // disabled by default
+ *     .defaultTable(name).createTables(true) // disabled by default
+ *     .simulationMode(true) // disabled by default
  *     .store(job);
  * </pre>
  *