legendtkl opened a new issue #1845: URL: https://github.com/apache/incubator-linkis/issues/1845
### Search before asking - [X] I searched the [issues](https://github.com/apache/incubator-linkis/issues) and found no similar issues. ### Linkis Component linkis-cg-entrance ### What happened + What you expected to happen Now we reset the key 'wds.linkis.resultSet.store.path' in the 'install.sh' script ```bash if [ "$RESULT_SET_ROOT_PATH" != "" ] then sed -i ${txt} "s#wds.linkis.resultSet.store.path.*wds.linkis.resultSet.store.path=$RESULT_SET_ROOT_PATH#g" $entrance_conf fi ``` it should be corrected as ```bash ```bash if [ "$RESULT_SET_ROOT_PATH" != "" ] then sed -i ${txt} "s#wds.linkis.resultSet.store.path.*#wds.linkis.resultSet.store.path=$RESULT_SET_ROOT_PATH#g" $entrance_conf fi ``` ``` ### Relevent platform Linkis ### Reproduction script 1. modify the key 'wds.linkis.resultSet.store.path' in 'linkis-env.sh' 2. execute 'install.sh' to install the Linkis 3. find the 'wds.linkis.resultSet.store.path' result in properties files ### Anything else _No response_ ### Are you willing to submit a PR? - [X] Yes I am willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
