Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos between key names and documentation #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ For example, you can specify passwords in the configFile and avoid having them o
the command line. The format is one switch and option per line:

```
-pwd mypassword
-pw mypassword
-host 1.2.3.4
```

Expand Down Expand Up @@ -208,9 +208,9 @@ OPTIONS:
-user <username> Cassandra username [none]
-pw <password> Password for user [none]
-ssl-truststore-path <path> Path to SSL truststore [none]
-ssl-truststore-pw <pwd> Password for SSL truststore [none]
-ssl-truststore-pwd <pwd> Password for SSL truststore [none]
-ssl-keystore-path <path> Path to SSL keystore [none]
-ssl-keystore-pw <pwd> Password for SSL keystore [none]
-ssl-keystore-pwd <pwd> Password for SSL keystore [none]
-consistencyLevel <CL> Consistency level [LOCAL_ONE]
-numFutures <numFutures> Number of CQL futures to keep in flight [1000]
-batchSize <batchSize> Number of INSERTs to batch together [1]
Expand Down Expand Up @@ -338,9 +338,9 @@ OPTIONS:
-user <username> Cassandra username [none]
-pw <password> Password for user [none]
-ssl-truststore-path <path> Path to SSL truststore [none]
-ssl-truststore-pw <pwd> Password for SSL truststore [none]
-ssl-truststore-pwd <pwd> Password for SSL truststore [none]
-ssl-keystore-path <path> Path to SSL keystore [none]
-ssl-keystore-pw <pwd> Password for SSL keystore [none]
-ssl-keystore-pwd <pwd> Password for SSL keystore [none]
-consistencyLevel <CL> Consistency level [LOCAL_ONE]
-decimalDelim <decimalDelim> Decimal delimiter [.] Other option is ','
-boolStyle <boolStyleString> Style for booleans [TRUE_FALSE]
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/datastax/loader/CqlDelimLoad.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ private String usage() {
usage.append(" -user <username> Cassandra username [none]\n");
usage.append(" -pw <password> Password for user [none]\n");
usage.append(" -ssl-truststore-path <path> Path to SSL truststore [none]\n");
usage.append(" -ssl-truststore-pw <pwd> Password for SSL truststore [none]\n");
usage.append(" -ssl-truststore-pwd <pwd> Password for SSL truststore [none]\n");
usage.append(" -ssl-keystore-path <path> Path to SSL keystore [none]\n");
usage.append(" -ssl-keystore-pw <pwd> Password for SSL keystore [none]\n");
usage.append(" -ssl-keystore-pwd <pwd> Password for SSL keystore [none]\n");
usage.append(" -consistencyLevel <CL> Consistency level [LOCAL_ONE]\n");
usage.append(" -numFutures <numFutures> Number of CQL futures to keep in flight [1000]\n");
usage.append(" -batchSize <batchSize> Number of INSERTs to batch together [1]\n");
Expand Down