You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2018/04/12 21:58:01 UTC

[geode] branch develop updated: GEODE-4874: Inconsistency in gfsh help for create jndi-binding (#1777)

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

sai_boorlagadda pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 34fdc32  GEODE-4874: Inconsistency in gfsh help for create jndi-binding (#1777)
34fdc32 is described below

commit 34fdc32099d9c449bf67a37067158777847d0d8f
Author: Sai Boorlagadda <sa...@gmail.com>
AuthorDate: Thu Apr 12 14:57:57 2018 -0700

    GEODE-4874: Inconsistency in gfsh help for create jndi-binding (#1777)
---
 .../management/internal/cli/commands/CreateJndiBindingCommand.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateJndiBindingCommand.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateJndiBindingCommand.java
index 2c4549c..25bfd6e 100644
--- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateJndiBindingCommand.java
+++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateJndiBindingCommand.java
@@ -51,7 +51,7 @@ public class CreateJndiBindingCommand extends InternalGfshCommand {
       "This element specifies the maximum time to block while waiting for a connection before throwing an exception.";
   static final String CONNECTION_POOLED_DATASOURCE_CLASS = "conn-pooled-datasource-class";
   static final String CONNECTION_POOLED_DATASOURCE_CLASS__HELP =
-      "This is the fully qualified name of the connection pool implementation to hold XS datasource connections.";
+      "This is the fully qualified name of the connection pool implementation to hold XA datasource connections.";
   static final String CONNECTION_URL = "connection-url";
   static final String CONNECTION_URL__HELP =
       "This is the JDBC driver connection URL string, for example, jdbc:hsqldb:hsql://localhost:1701.";
@@ -82,7 +82,7 @@ public class CreateJndiBindingCommand extends InternalGfshCommand {
   static final String TRANSACTION_TYPE__HELP = "Type of the transaction.";
   static final String TYPE = "type";
   static final String TYPE__HELP =
-      "Type of the XA datasource. Type of region to create. The following types are pre-defined by the product: MANAGED, SIMPLE, POOLED, XAPOOLED.";
+      "Type of the XA datasource. The following types are pre-defined by the product: MANAGED, SIMPLE, POOLED, XAPOOLED.";
   static final String USERNAME = "username";
   static final String USERNAME__HELP =
       "This element specifies the default username used when creating a new connection.";
@@ -93,7 +93,7 @@ public class CreateJndiBindingCommand extends InternalGfshCommand {
       "Skip the create operation when a jndi binding with the same name already exists.  Without specifying this option, this command execution results into an error.";
   static final String DATASOURCE_CONFIG_PROPERTIES = "datasource-config-properties";
   static final String DATASOURCE_CONFIG_PROPERTIES_HELP =
-      "Properties for the custom XSDataSource driver. Append json string containing (name, type, value) to set any property. Eg: --datasource-config-properties={'name':'name1','type':'type1','value':'value1'},{'name':'name2','type':'type2','value':'value2'}";
+      "Properties for the custom XADataSource driver. Append json string containing (name, type, value) to set any property. Eg: --datasource-config-properties={'name':'name1','type':'type1','value':'value1'},{'name':'name2','type':'type2','value':'value2'}";
 
   @CliCommand(value = CREATE_JNDIBINDING, help = CREATE_JNDIBINDING__HELP)
   @CliMetaData(relatedTopic = CliStrings.TOPIC_GEODE_REGION)

-- 
To stop receiving notification emails like this one, please contact
sai_boorlagadda@apache.org.