diff --git a/changes/en-us/develop.md b/changes/en-us/develop.md index 5c52b0d26f6..37b44e4536d 100644 --- a/changes/en-us/develop.md +++ b/changes/en-us/develop.md @@ -11,6 +11,7 @@ Add changes here for all PR submitted to the develop branch. - [[#4661](https://github.com/seata/seata/pull/4661)] fix sql exception with PostgreSQL in module console - [[#4667](https://github.com/seata/seata/pull/4682)] fix the exception in RedisTransactionStoreManager for update map During iteration - [[#4678](https://github.com/seata/seata/pull/4678)] fix the error of key transport.enableRmClientBatchSendRequest cache penetration if not configure + - [[#4701](https://github.com/seata/seata/pull/4701)] fix missing command line args - [[#4607](https://github.com/seata/seata/pull/4607)] fix bug on skipping lock check diff --git a/changes/zh-cn/develop.md b/changes/zh-cn/develop.md index 176f06ba2e2..4402141875b 100644 --- a/changes/zh-cn/develop.md +++ b/changes/zh-cn/develop.md @@ -9,9 +9,9 @@ - [[#4661](https://github.com/seata/seata/pull/4661)] 修复控制台中使用PostgreSQL出现的SQL异常 - [[#4667](https://github.com/seata/seata/pull/4682)] 修复develop分支RedisTransactionStoreManager迭代时更新map的异常 - [[#4678](https://github.com/seata/seata/pull/4678)] 修复属性transport.enableRmClientBatchSendRequest没有配置的情况下缓存穿透的问题 + - [[#4701](https://github.com/seata/seata/pull/4701)] 修复命令行参数丢失问题 - [[#4607](https://github.com/seata/seata/pull/4607)] 修复跳过全局锁校验的缺陷 - ### optimize: - [[#4650](https://github.com/seata/seata/pull/4650)] 修复安全漏洞 - [[#4670](https://github.com/seata/seata/pull/4670)] 优化branchResultMessageExecutor线程池的线程数 diff --git a/distribution/bin/seata-server.sh b/distribution/bin/seata-server.sh index 19d6a1b5531..41d664ae6c8 100644 --- a/distribution/bin/seata-server.sh +++ b/distribution/bin/seata-server.sh @@ -151,7 +151,9 @@ if [ ! -x "$BASEDIR"/logs ]; then mkdir "$BASEDIR"/logs fi +CMD_LINE_ARGS=$@ + # start -echo "$JAVACMD ${JAVA_OPT}" > ${BASEDIR}/logs/start.out 2>&1 & -nohup $JAVACMD ${JAVA_OPT} >> ${BASEDIR}/logs/start.out 2>&1 & +echo "$JAVACMD ${JAVA_OPT} ${CMD_LINE_ARGS}" > ${BASEDIR}/logs/start.out 2>&1 & +nohup $JAVACMD ${JAVA_OPT} ${CMD_LINE_ARGS} >> ${BASEDIR}/logs/start.out 2>&1 & echo "seata-server is starting, you can check the ${BASEDIR}/logs/start.out"