perf: reduce warnings caused by network connection failures (#252)
This commit is contained in:
parent
abf5534165
commit
4dd52a8c8e
|
@ -80,9 +80,11 @@ const refreshInfo = async (force) => {
|
||||||
}
|
}
|
||||||
if (!isEmpty(props.server) && browserStore.isConnected(props.server)) {
|
if (!isEmpty(props.server) && browserStore.isConnected(props.server)) {
|
||||||
try {
|
try {
|
||||||
const info = await browserStore.getServerInfo(props.server)
|
const info = await browserStore.getServerInfo(props.server, true)
|
||||||
|
if (!isEmpty(info)) {
|
||||||
serverInfo.value = info
|
serverInfo.value = info
|
||||||
_updateChart(info)
|
_updateChart(info)
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
pageState.loading = false
|
pageState.loading = false
|
||||||
pageState.autoLoading = false
|
pageState.autoLoading = false
|
||||||
|
|
|
@ -343,10 +343,11 @@ const useBrowserStore = defineStore('browser', {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param server
|
* @param {string} server
|
||||||
|
* @param {boolean} mute
|
||||||
* @returns {Promise<{}>}
|
* @returns {Promise<{}>}
|
||||||
*/
|
*/
|
||||||
async getServerInfo(server) {
|
async getServerInfo(server, mute) {
|
||||||
try {
|
try {
|
||||||
const { success, data, msg } = await ServerInfo(server)
|
const { success, data, msg } = await ServerInfo(server)
|
||||||
if (success) {
|
if (success) {
|
||||||
|
@ -356,7 +357,7 @@ const useBrowserStore = defineStore('browser', {
|
||||||
serverInst.stats = data
|
serverInst.stats = data
|
||||||
}
|
}
|
||||||
return data
|
return data
|
||||||
} else if (!isEmpty(msg)) {
|
} else if (!isEmpty(msg) && mute !== true) {
|
||||||
$message.warning(msg)
|
$message.warning(msg)
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
|
Loading…
Reference in New Issue