Skip to content

Commit 7c72997

Browse files
Merge remote-tracking branch 'origin/dev-1.1.4' into dev-1.1.4
2 parents a855024 + 9637dcf commit 7c72997

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

sbin/dss-start-all.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ function startDssProject(){
107107
# fi
108108
# echo "------------------------the project service is registered to eureka successfully------------------------------------------------"
109109

110-
SERVER_NAME=dss-framework-orchestrator-server
111-
SERVER_IP=$DSS_FRAMEWORK_ORCHESTRATOR_SERVER_INSTALL_IP
112-
startApp
113-
114110
SERVER_NAME=dss-apiservice-server
115111
SERVER_IP=$DSS_APISERVICE_SERVER_INSTALL_IP
116112
startApp
@@ -119,10 +115,6 @@ function startDssProject(){
119115
SERVER_IP=$DSS_SCRIPTIS_SERVER_INSTALL_IP
120116
startApp
121117

122-
SERVER_NAME=dss-workflow-server
123-
SERVER_IP=$DSS_WORKFLOW_SERVER_INSTALL_IP
124-
startApp
125-
126118
SERVER_NAME=dss-flow-execution-server
127119
SERVER_IP=$DSS_FLOW_EXECUTION_SERVER_INSTALL_IP
128120
startApp
@@ -139,6 +131,14 @@ function startDssProject(){
139131
SERVER_IP=$DSS_GUIDE_SERVER_INSTALL_IP
140132
startApp
141133

134+
SERVER_NAME=dss-framework-orchestrator-server
135+
SERVER_IP=$DSS_FRAMEWORK_ORCHESTRATOR_SERVER_INSTALL_IP
136+
startApp
137+
138+
SERVER_NAME=dss-workflow-server
139+
SERVER_IP=$DSS_WORKFLOW_SERVER_INSTALL_IP
140+
startApp
141+
142142
}
143143

144144
function checkDssService(){

web/packages/shared/common/service/api.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,6 @@ const action = function (url, data, option) {
421421
Notice.error({desc: msg, title: '错误提示', duration: 4});
422422
throw error;
423423
}
424-
setTimeout(() => {
425-
lastMsg = ''
426-
}, 4000)
427424
}
428425
if (error.message === API_ERR_MSG || error.msg === API_ERR_MSG) {
429426
if (showApiErrorTips) {
@@ -436,6 +433,9 @@ const action = function (url, data, option) {
436433
} else {
437434
showErrMsg()
438435
}
436+
setTimeout(() => {
437+
lastMsg = ''
438+
}, 4000)
439439
});
440440
};
441441

0 commit comments

Comments
 (0)