Skip to content

Commit

Permalink
chore: change exit message to "exiting ksqlDB" (MINOR) (#4073)
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra authored Dec 6, 2019
1 parent e81997c commit aabfb47
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs-md/tutorials/basics-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ Run the `exit` command to leave the ksqlDB CLI.

```
ksql> exit
Exiting KSQL.
Exiting ksqlDB.
```

### Docker
Expand Down
2 changes: 1 addition & 1 deletion docs-md/tutorials/basics-local.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ KSQL
```
ksql> exit
Exiting KSQL.
Exiting ksqlDB.
```
Confluent CLI
Expand Down
2 changes: 1 addition & 1 deletion docs-md/tutorials/clickstream-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ Send the KSQL tables to Elasticsearch and Grafana.
```
ksql>
Exiting KSQL.
Exiting ksqlDB.
```
2. Set up the required Elasticsearch document mapping template
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/ksql-includes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ queries.
::

ksql> exit
Exiting KSQL.
Exiting ksqlDB.

.. terminate_and_exit__end
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/clickstream-docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ Send the KSQL tables to Elasticsearch and Grafana.
.. code:: text
ksql>
Exiting KSQL.
Exiting ksqlDB.
2. Set up the required Elasticsearch document mapping template

Expand Down
2 changes: 1 addition & 1 deletion ksql-cli/src/main/java/io/confluent/ksql/cli/Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public void runInteractively() {
handleLine(readLine());
} catch (final EndOfFileException exception) {
// EOF is fine, just terminate the REPL
terminal.writer().println("Exiting KSQL.");
terminal.writer().println("Exiting ksqlDB.");
eof = true;
} catch (final Exception exception) {
LOGGER.error("", exception);
Expand Down

0 comments on commit aabfb47

Please sign in to comment.