Skip to content

Commit 76c69fe

Browse files
author
xlinliu
committed
fix sensitive info
1 parent 01a8c58 commit 76c69fe

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

assembly/bin/appconn-refresh.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function isSuccess(){
2222

2323
function refresh() {
2424
while true; do
25-
response=$(curl -H "Token-Code:BML-AUTH" -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:" -H "Token-User:hadoop" -X GET http://${GATEWAY_INSTALL_IP}:${GATEWAY_PORT}/api/rest_j/v1/dss/framework/project/appconn/${APPCONN_NAME}/load)
2626
if [[ $response == *"not appconn manager node"* ]]; then
2727
echo 'not appconn manager node, we will try again 5 seconds later'
2828
sleep 5

assembly/config/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ GATEWAY_INSTALL_IP=127.0.0.1
2525
GATEWAY_PORT=9001
2626

2727
### Linkis BML Token
28-
BML_AUTH=BML-AUTH
28+
BML_AUTH=
2929

3030
################### The install Configuration of all Micro-Services start #####################
3131
#

conf/dss.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ wds.linkis.mysql.is.encrypt=false
2323
wds.linkis.server.mybatis.datasource.url=
2424
wds.linkis.server.mybatis.datasource.username=
2525
***REMOVED***
26-
wds.linkis.bml.auth.token.value=BML-AUTH
27-
linkis.configuration.linkisclient.auth.token.value=BML-AUTH
28-
wds.linkis.context.client.auth.value=BML-AUTH
29-
wds.linkis.errorcode.auth.token=BML-AUTH
26+
wds.linkis.bml.auth.token.value=
27+
linkis.configuration.linkisclient.auth.token.value=
28+
wds.linkis.context.client.auth.value=
29+
wds.linkis.errorcode.auth.token=
3030

3131
wds.dss.check.server.active.period=30
3232

dss-appconn/appconns/dss-eventchecker-appconn/src/main/svgs/eventreceiver.svg

Lines changed: 1 addition & 1 deletion
Loading

dss-appconn/appconns/dss-scriptis-appconn/src/main/svgs/eventchecker.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

dss-orchestrator/orchestrators/dss-workflow/dss-linkis-node-execution/src/main/java/com/webank/wedatasphere/dss/linkis/node/execution/conf/LinkisJobExecutionConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class LinkisJobExecutionConfiguration {
6161
public final static CommonVars<String> LINKIS_ADMIN_USER = CommonVars.apply("wds.linkis.client.flow.adminuser","ws");
6262

6363

64-
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.flow.author.user.token","admin-kmsnd");
64+
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.flow.author.user.token","");
6565

6666
public final static CommonVars<String> LINKIS_JOB_CREATOR = CommonVars.apply("wds.linkis.flow.job.creator","nodeexecution");
6767

dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/service/impl/DSSFlowServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class DSSFlowServiceImpl implements DSSFlowService {
110110

111111
private static ContextService contextService = ContextServiceImpl.getInstance();
112112

113-
private static final String TOKEN = CommonVars.apply("wds.dss.workspace.token", "BML-AUTH").getValue();
113+
private static final String TOKEN = CommonVars.apply("wds.dss.workspace.token", "").getValue();
114114

115115
@Override
116116
public DSSFlow getFlowByID(Long id) {

plugins/azkaban/linkis-jobtype/src/main/resources/plugin.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
wds.linkis.gateway.url.v1=http://127.0.0.1:9001
1818
wds.linkis.gateway.url.v0=http://127.0.0.1:9001
19-
wds.linkis.client.flow.author.user.token=admin-kmsnd
19+
wds.linkis.client.flow.author.user.token=
2020
wds.linkis.flow.job.creator=scheduler
2121
wds.linkis.flow.job.creator.v1=schedulis

web/packages/exts/scriptisGuide/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"ext": {
44
"scriptisGuide": {
55
"uninitTitle": "User initialization not completed",
6-
"uninitContent": "Please go to the data map ***REMOVED*** to submit the relevant service ticket application.<br>If you have already submitted the application, please make sure that your approval ticket status is completed.",
6+
"uninitContent": "Please go to the data map to submit the relevant service ticket application.<br>If you have already submitted the application, please make sure that your approval ticket status is completed.",
77
"gotit": "I got it",
88
"viewGuide": "View Application Guide",
99
"setParams": "Set parameters",

0 commit comments

Comments
 (0)