管理画面でstatsを継続リクエストしないように (#5608)

This commit is contained in:
MeiMei 2019-12-15 03:43:31 +09:00 committed by syuilo
parent d95242cab0
commit 932436096f
1 changed files with 0 additions and 3 deletions

View File

@ -115,7 +115,6 @@ export default Vue.extend({
connection: null,
meta: null,
instances: [],
clock: null,
faDatabase
};
},
@ -124,7 +123,6 @@ export default Vue.extend({
this.connection = this.$root.stream.useSharedConnection('serverStats');
this.updateStats();
this.clock = setInterval(this.updateStats, 3000);
this.$root.getMeta().then(meta => {
this.meta = meta;
@ -145,7 +143,6 @@ export default Vue.extend({
beforeDestroy() {
this.connection.dispose();
clearInterval(this.clock);
},
methods: {