Skip to content

Commit 4af60cc

Browse files
authored
Merge pull request #1149 from WeDataSphere/master
Update latest code
2 parents 3e2aef2 + 217c24f commit 4af60cc

File tree

1,121 files changed

+73469
-3334
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,121 files changed

+73469
-3334
lines changed

.gitattributes

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
*.js linguist-language=java
22
*.css linguist-language=java
33
*.html linguist-language=java
4-
*.vue linguist-language=java
5-
*.zip filter=lfs diff=lfs merge=lfs -text
4+
*.vue linguist-language=java

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
.idea
22
.idea/*
3+
.metals
4+
.vscode
5+
.scalafmt.conf
6+
.bloop
37

48
.DS_Store
59

@@ -101,6 +105,9 @@ dss-apps/dss-data-governance/dss-data-warehouse-dao/target
101105
dss-apps/dss-data-governance/dss-data-warehouse-service/target
102106
dss-apps/dss-data-governance/dss-data-warehouse-server/target
103107

108+
#dss-git
109+
dss-git/dss-git-common/target
110+
dss-git/dss-git-server/target
104111

105112
# plugins
106113
plugins/azkaban/linkis-jobtype/target

README-ZH.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)