mirror of https://github.com/apache/kafka.git
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:
parent
c6e6fadeed
commit
e3ede84344
|
@ -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%
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue