You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ki...@apache.org on 2019/10/27 23:59:48 UTC

[incubator-pinot] branch master updated: Fix a wrong option name for AddSchema in the information log (#4746)

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

kishoreg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c3c716  Fix a wrong option name for AddSchema in the information log (#4746)
3c3c716 is described below

commit 3c3c71614ed69925959f97a3fca15e1eb289b173
Author: Kengo Seki <se...@apache.org>
AuthorDate: Mon Oct 28 08:59:39 2019 +0900

    Fix a wrong option name for AddSchema in the information log (#4746)
---
 .../java/org/apache/pinot/tools/admin/command/AddSchemaCommand.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/AddSchemaCommand.java b/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/AddSchemaCommand.java
index 851bcb8..f0df976 100644
--- a/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/AddSchemaCommand.java
+++ b/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/AddSchemaCommand.java
@@ -65,7 +65,7 @@ public class AddSchemaCommand extends AbstractBaseAdminCommand implements Comman
   @Override
   public String toString() {
     String retString =
-        ("AddSchema -controllerHost " + _controllerHost + " -controllerPort " + _controllerPort + " -schemaFilePath "
+        ("AddSchema -controllerHost " + _controllerHost + " -controllerPort " + _controllerPort + " -schemaFile "
             + _schemaFile);
 
     return ((_exec) ? (retString + " -exec") : retString);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org