@budibase/worker 1.3.15-alpha.3 → 1.3.17

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/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "1.3.15-alpha.3",
4
+ "version": "1.3.17",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -35,10 +35,10 @@
35
35
  "author": "Budibase",
36
36
  "license": "GPL-3.0",
37
37
  "dependencies": {
38
- "@budibase/backend-core": "1.3.15-alpha.3",
39
- "@budibase/pro": "1.3.15-alpha.2",
40
- "@budibase/string-templates": "1.3.15-alpha.3",
41
- "@budibase/types": "1.3.15-alpha.3",
38
+ "@budibase/backend-core": "^1.3.17",
39
+ "@budibase/pro": "1.3.16",
40
+ "@budibase/string-templates": "^1.3.17",
41
+ "@budibase/types": "^1.3.17",
42
42
  "@koa/router": "8.0.8",
43
43
  "@sentry/node": "6.17.7",
44
44
  "@techpass/passport-openidconnect": "0.3.2",
@@ -103,5 +103,5 @@
103
103
  "./scripts/jestSetup.js"
104
104
  ]
105
105
  },
106
- "gitHead": "a1eafcef980f6ed36933a6d2953e35b0de82be51"
106
+ "gitHead": "01d7c9d994aa66a1d08ab71acc9e6c8eab825a47"
107
107
  }
@@ -43,7 +43,8 @@ const env = {
43
43
  PLATFORM_URL: process.env.PLATFORM_URL,
44
44
  APPS_URL: process.env.APPS_URL,
45
45
  // ports
46
- PORT: process.env.PORT || process.env.WORKER_PORT,
46
+ // prefer worker port to generic port
47
+ PORT: process.env.WORKER_PORT || process.env.PORT,
47
48
  CLUSTER_PORT: process.env.CLUSTER_PORT,
48
49
  // flags
49
50
  NODE_ENV: process.env.NODE_ENV,