@budibase/server 2.7.7-alpha.2 → 2.7.7-alpha.3

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.7.7-alpha.2",
4
+ "version": "2.7.7-alpha.3",
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.7.7-alpha.2",
50
- "@budibase/client": "2.7.7-alpha.2",
51
- "@budibase/pro": "2.7.7-alpha.2",
52
- "@budibase/shared-core": "2.7.7-alpha.2",
53
- "@budibase/string-templates": "2.7.7-alpha.2",
54
- "@budibase/types": "2.7.7-alpha.2",
49
+ "@budibase/backend-core": "2.7.7-alpha.3",
50
+ "@budibase/client": "2.7.7-alpha.3",
51
+ "@budibase/pro": "2.7.7-alpha.3",
52
+ "@budibase/shared-core": "2.7.7-alpha.3",
53
+ "@budibase/string-templates": "2.7.7-alpha.3",
54
+ "@budibase/types": "2.7.7-alpha.3",
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": "1ed4c86736987a6f9e912cfc37933af589102761"
198
+ "gitHead": "4066481ab4d8e674be19bed0517878f7f9c276f9"
199
199
  }
@@ -26,6 +26,10 @@ export default function process(updateCb?: UpdateCallback) {
26
26
  // if something not found - no changes to perform
27
27
  if (err?.status === 404) {
28
28
  return
29
+ }
30
+ // The user has already been sync in another process
31
+ else if (err?.status === 409) {
32
+ return
29
33
  } else {
30
34
  logging.logAlert("Failed to perform user/group app sync", err)
31
35
  }