fix(server): wrap read-modify-write apis with distributed lock (#6142)

This commit is contained in:
DarkSky
2024-03-19 02:16:23 +00:00
parent a4cd8d6ca3
commit f18133af82
20 changed files with 412 additions and 79 deletions

View File

@@ -54,7 +54,7 @@ export class UserService {
return this.createUser({
email,
name: 'Unnamed',
name: email.split('@')[0],
...data,
});
}