We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1decaf1 commit 006d66eCopy full SHA for 006d66e
app/stores/geode.js
@@ -46,9 +46,7 @@ export const useGeodeStore = defineStore("geode", {
46
actions: {
47
ping_task() {
48
setInterval(() => {
49
- if (this.status == Status.CONNECTED) {
50
- this.do_ping()
51
- }
+ this.do_ping()
52
}, 10 * 1000)
53
},
54
do_ping() {
@@ -86,7 +84,7 @@ export const useGeodeStore = defineStore("geode", {
86
84
87
85
connect() {
88
console.log("[GEODE] Connecting to geode microservice...")
89
- return this.do_ping()
+ return this.ping_task()
90
91
request(schema, params, callbacks = {}) {
92
console.log("[GEODE] Request:", schema.$id)
0 commit comments