Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlinliu committed Nov 18, 2024
2 parents 09897e9 + 66d949e commit 041c656
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions assembly/config/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ DSS_APPS_SERVER_PORT=9044

############## ############## dss_appconn_instance configuration start ############## ##############
####eventchecker表的地址,一般就是dss数据库
EVENTCHECKER_JDBC_URL=***REMOVED***
EVENTCHECKER_JDBC_URL=
EVENTCHECKER_JDBC_USERNAME=linkis
EVENTCHECKER_JDBC_PASSWORD=linkis@Wds

#### hive地址
DATACHECKER_JOB_JDBC_URL=***REMOVED***
DATACHECKER_JOB_JDBC_URL=
DATACHECKER_JOB_JDBC_USERNAME=hivemeta
DATACHECKER_JOB_JDBC_PASSWORD=Linkishivemeta@123
#### 元数据库,可配置成和DATACHECKER_JOB的一致
DATACHECKER_BDP_JDBC_URL=***REMOVED***
DATACHECKER_BDP_JDBC_URL=
DATACHECKER_BDP_JDBC_USERNAME=hivemeta
DATACHECKER_BDP_JDBC_PASSWORD=Linkishivemeta@123

Expand Down
4 changes: 2 additions & 2 deletions conf/dss-server.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wds.dss.appconn.checker.development.ignore.list=orchestrator-framework,workflow,
wds.dss.appconn.checker.project.ignore.list=
## filter appconn
wds.dss.appconn.disabled=
wds.dss.trust.token=***REMOVED***
wds.dss.trust.token=

##import file dir
wds.dss.server.scheduling.clear.cs.cron=0/5 * * * * ?
Expand All @@ -44,7 +44,7 @@ wds.linkis.resultSet.store.path=hdfs:///tmp/linkis
wds.linkis.server.socket.mode=true

wds.linkis.client.flow.adminuser=ws
wds.linkis.client.flow.author.user.token=***REMOVED***
wds.linkis.client.flow.author.user.token=

wds.linkis.server.component.exclude.classes=org.apache.linkis.entranceclient.conf.ClientForEntranceSpringConfiguration,org.apache.linkis.entranceclient.conf.ClientSpringConfiguration

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class AppConnManagerClientConfiguration {

public final static CommonVars<String> DSS_APPCONN_CLIENT_TOKEN = CommonVars.apply("wds.dss.appconn.client.user.token","***REMOVED***");
public final static CommonVars<String> DSS_APPCONN_CLIENT_TOKEN = CommonVars.apply("wds.dss.appconn.client.user.token","");
public final static CommonVars<String> LINKIS_ADMIN_USER = CommonVars.apply("wds.dss.appconn.client.user","ws");

public final static CommonVars<TimeType> APPCONN_WAIT_MAX_TIME = CommonVars.apply("wds.dss.appconn.client.load.wait.max.time",new TimeType("3m"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


public class ApiServiceConfiguration {
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.api.service.author.user.token","***REMOVED***");
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.api.service.author.user.token","");
public final static CommonVars<String> LINKIS_ADMIN_USER = CommonVars.apply("wds.linkis.client.api.service.adminuser","ws");

public final static CommonVars<Integer> LINKIS_CONNECTION_TIMEOUT = CommonVars.apply("wds.linkis.flow.connection.timeout",30000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


public class DSSScriptisConfiguration {
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.api.service.author.user.token","***REMOVED***");
public final static CommonVars<String> LINKIS_AUTHOR_USER_TOKEN = CommonVars.apply("wds.linkis.client.api.service.author.user.token","");
public final static CommonVars<String> LINKIS_ADMIN_USER = CommonVars.apply("wds.linkis.client.api.service.adminuser","ws");

public final static CommonVars<Long> LINKIS_CONNECTION_TIMEOUT = CommonVars.apply("wds.linkis.client.connection.timeout",45000L);
Expand Down
4 changes: 2 additions & 2 deletions plugins/azkaban/linkis-jobtype/bin/config.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
##Linkis gateway url
LINKIS_GATEWAY_URL=http://127.0.0.1:9001

##Linkis gateway token default ***REMOVED***
LINKIS_GATEWAY_TOKEN=***REMOVED***
##Linkis gateway token default
LINKIS_GATEWAY_TOKEN=


##Azkaban executor host
Expand Down
4 changes: 2 additions & 2 deletions web/packages/scriptis/module/workbench/script/script.vue
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export default {
eventType?: any,
arg?: {}
}]
* @param {*} param0
* @param {*} param0
*/
initListenerCopilotEvent() {
plugin.on('copilot_web_listener_inster', this.insterCode)
Expand Down Expand Up @@ -523,7 +523,7 @@ export default {
}
},
'Workbench:removeTab'() {
// fix http://***REMOVED***/#/product/100199/bug/detail/199545
// fix http://xxx/#/product/100199/bug/detail/199545
if (this.node) {
this.resizePanel()
}
Expand Down

0 comments on commit 041c656

Please sign in to comment.