@budibase/server 2.6.19-alpha.51 → 2.6.19-alpha.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.6.19-alpha.51",
4
+ "version": "2.6.19-alpha.52",
5
5
  "description": "Budibase Web Server",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -46,12 +46,12 @@
46
46
  "license": "GPL-3.0",
47
47
  "dependencies": {
48
48
  "@apidevtools/swagger-parser": "10.0.3",
49
- "@budibase/backend-core": "2.6.19-alpha.51",
50
- "@budibase/client": "2.6.19-alpha.51",
51
- "@budibase/pro": "2.6.19-alpha.51",
52
- "@budibase/shared-core": "2.6.19-alpha.51",
53
- "@budibase/string-templates": "2.6.19-alpha.51",
54
- "@budibase/types": "2.6.19-alpha.51",
49
+ "@budibase/backend-core": "2.6.19-alpha.52",
50
+ "@budibase/client": "2.6.19-alpha.52",
51
+ "@budibase/pro": "2.6.19-alpha.52",
52
+ "@budibase/shared-core": "2.6.19-alpha.52",
53
+ "@budibase/string-templates": "2.6.19-alpha.52",
54
+ "@budibase/types": "2.6.19-alpha.52",
55
55
  "@bull-board/api": "3.7.0",
56
56
  "@bull-board/koa": "3.9.4",
57
57
  "@elastic/elasticsearch": "7.10.0",
@@ -195,5 +195,5 @@
195
195
  }
196
196
  }
197
197
  },
198
- "gitHead": "04fc1505cc0fd9102aeeeed1d3d98e34f470fec2"
198
+ "gitHead": "77a332e4cedddef2472c9aa5aa28e206ae560090"
199
199
  }
@@ -92,7 +92,6 @@ export class BaseSocket {
92
92
  this.io.on("connection", async socket => {
93
93
  // Add built in handler for heartbeats
94
94
  socket.on(SocketEvent.Heartbeat, async () => {
95
- console.log(socket.data.email, "heartbeat received")
96
95
  await this.extendSessionTTL(socket.data.sessionId)
97
96
  })
98
97