Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
60d2f7cfd3 | ||
|
|
0ac8b44ce0 | ||
|
|
59fec74d08 |
@@ -74,7 +74,7 @@ export class SqlTeamMemberRepository implements TeamMemberRepository {
|
||||
.where("id", teamId)
|
||||
.forUpdate();
|
||||
|
||||
await this._txn.modify(lockSql);
|
||||
await this._txn.fetchRow(lockSql);
|
||||
|
||||
// Double-check (with lock held) that there is room to join this team.
|
||||
// If this fails then the error will propagate to the client and it will
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
@echo off
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
where /q node
|
||||
if errorlevel 1 (
|
||||
echo NodeJS does not appear to be installed.
|
||||
@@ -40,8 +42,10 @@ if not exist node_modules (
|
||||
echo.
|
||||
)
|
||||
|
||||
rem Project Diva requires TLSv1.0
|
||||
|
||||
set DEBUG=app:*
|
||||
node .\bin\index.js
|
||||
node --tls-min-v1.0 .\bin\index.js
|
||||
|
||||
:end
|
||||
echo.
|
||||
|
||||
Reference in New Issue
Block a user