MINOR: Remove # from .bat start script

On Windows, the following output is seen when starting Zookeeper and Kafka servers:
```
'#' is not recognized as an internal or external command,
operable program or batch file.
```

This pull request makes a minor correction to the Windows `kafka-run-class.bat` script to replace the use of `#` with `rem`.

Author: P. Thorpe <paul.thorpe@uk.ibm.com>

Reviewers: Vahid Hashemian, Gwen Shapira

Closes #1740 from p-thorpe/trunk
This commit is contained in:
P. Thorpe 2016-08-18 20:50:20 -07:00 committed by Gwen Shapira
parent c6e6fadeed
commit e3ede84344
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ rem Log4j settings
IF ["%KAFKA_LOG4J_OPTS%"] EQU [""] (
set KAFKA_LOG4J_OPTS=-Dlog4j.configuration=file:%BASE_DIR%/config/tools-log4j.properties
) ELSE (
# create logs directory
rem create logs directory
IF not exist %LOG_DIR% (
mkdir %LOG_DIR%
)