Skip to content

Commit 8996b42

Browse files
authored
Merge pull request #1138 from WeDataSphere/branch-1.2.2
Update branch 1.2.2
2 parents 8157a91 + 5639ed2 commit 8996b42

File tree

1,068 files changed

+67495
-4126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,068 files changed

+67495
-4126
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ dss-apps/dss-data-governance/dss-data-warehouse-dao/target
101101
dss-apps/dss-data-governance/dss-data-warehouse-service/target
102102
dss-apps/dss-data-governance/dss-data-warehouse-server/target
103103

104+
#dss-git
105+
dss-git/dss-git-common/target
106+
dss-git/dss-git-server/target
104107

105108
# plugins
106109
plugins/azkaban/linkis-jobtype/target

README-ZH.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170

171171
       您也可以扫描下面的二维码,加入我们的 微信群,以获得更快速的响应。
172172

173-
![交流](images/zh_CN/readme/communication.png)
173+
![交流](images/zh_CN/readme/communication.jpg)
174174

175175
## 谁在使用 DSS
176176

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ English | [中文](README-ZH.md)
168168

169169
       You can scan the QR code below to join our WeChat to get more immediate response.
170170

171-
![communication](images/en_US/readme/communication.png)
171+
![communication](images/en_US/readme/communication.jpg)
172172

173173
## Who is using DSS
174174

assembly/bin/appconn-refresh.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function isSuccess(){
2222

2323
function refresh() {
2424
while true; do
25-
response=$(curl -H "Token-Code:" -H "Token-User:hadoop" -X GET http://${GATEWAY_INSTALL_IP}:${GATEWAY_PORT}/api/rest_j/v1/dss/framework/project/appconn/${APPCONN_NAME}/load)
25+
response=$(curl -H "Token-Code:xxx" -H "Token-User:hadoop" -X GET
26+
http://${GATEWAY_INSTALL_IP}:${GATEWAY_PORT}/api/rest_j/v1/dss/framework/project/appconn/${APPCONN_NAME}/load)
2627
if [[ $response == *"not appconn manager node"* ]]; then
2728
echo 'not appconn manager node, we will try again 5 seconds later'
2829
sleep 5

assembly/bin/dssinstall.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function changeCommonConf(){
105105
sed -i "s#hostname:.*#hostname: $SERVER_IP#g" $CONF_APPLICATION_YML
106106
sed -i "s#wds.linkis.server.mybatis.datasource.url.*#wds.linkis.server.mybatis.datasource.url=jdbc:mysql://${MYSQL_HOST}:${MYSQL_PORT}/${MYSQL_DB}?characterEncoding=UTF-8#g" $CONF_DSS_PROPERTIES
107107
sed -i "s#wds.linkis.server.mybatis.datasource.username.*#wds.linkis.server.mybatis.datasource.username=$MYSQL_USER#g" $CONF_DSS_PROPERTIES
108-
sed -i "s#wds.linkis.server.mybatis.datasource.password.*#***REMOVED***$MYSQL_PASSWORD#g" $CONF_DSS_PROPERTIES
108+
sed -i "s#wds.linkis.server.mybatis.datasource.password.*#wds.linkis.server.mybatis.datasource.password=$MYSQL_PASSWORD#g" $CONF_DSS_PROPERTIES
109109
sed -i "s#wds.linkis.gateway.ip.*#wds.linkis.gateway.ip=$GATEWAY_INSTALL_IP#g" $CONF_DSS_PROPERTIES
110110
sed -i "s#wds.linkis.gateway.port.*#wds.linkis.gateway.port=$GATEWAY_PORT#g" $CONF_DSS_PROPERTIES
111111
sed -i "s#wds.linkis.gateway.url.*#wds.linkis.gateway.url=http://$GATEWAY_INSTALL_IP:$GATEWAY_PORT/#g" $CONF_DSS_PROPERTIES

0 commit comments

Comments
 (0)