1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

Ignore 409 errors on user syncs

This commit is contained in:
Adria Navarro 2023-06-09 12:36:09 +01:00
parent c0a2435cdb
commit 8492ef18fa

View file

@ -26,6 +26,10 @@ export default function process(updateCb?: UpdateCallback) {
// if something not found - no changes to perform
if (err?.status === 404) {
return
}
// The user has already been sync in another process
else if (err?.status === 409) {
return
} else {
logging.logAlert("Failed to perform user/group app sync", err)
}