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