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 2019/10/30 22:57:30 UTC

[GitHub] [accumulo-website] ctubbsii commented on a change in pull request #202: Update for 2.0

ctubbsii commented on a change in pull request #202: Update for 2.0
URL: https://github.com/apache/accumulo-website/pull/202#discussion_r340896232
 
 

 ##########
 File path: src/main/java/tour/Main.java
 ##########
 @@ -42,14 +43,17 @@ public static void main(String[] args) throws Exception {
         System.out.println("Running the Accumulo tour. Having fun yet?");
 
         Path tempDir = Files.createTempDirectory(Paths.get("target"), "mac");
-        MiniAccumuloCluster mac = new MiniAccumuloCluster(tempDir.toFile(), "tourguide");
+        MiniAccumuloCluster mac = new MiniAccumuloCluster(tempDir.toFile(), "tourpass");
 
         mac.start();
-        exercise(mac);
+
+	try (AccumuloClient client = mac.createAccumuloClient("root", new PasswordToken("tourpass"))) {
 
 Review comment:
   nit; replace tabs with spaces.
   ```suggestion
   	try (AccumuloClient client = mac.createAccumuloClient("root", new PasswordToken("tourpass"))) {
   ```

----------------------------------------------------------------
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


With regards,
Apache Git Services