Linear: https://linear.app/comm/issue/ENG-1350/investigate-why-new-messages-are-not-displayed-when-keyserver
Introduce 5s delay before running database setup script and migrations in dev mode.
This prevents executing migrations and db setup script while project files are compiled after running yarn dev and nodemon restarts a few times.
Details
Details
I dropped database, and run yarn dev with and without fix, confirming that DB setup was fully completed using logs. Also checked threads table in DB to confirm the initial threads are created.
Diff Detail
Diff Detail
- Repository
- rCOMM Comm
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
keyserver/src/database/migrations.js | ||
---|---|---|
15 ↗ | (On Diff #14409) | This variable declaration should be grouped with the try-catch that sets it below |
keyserver/src/database/migrations.js | ||
---|---|---|
15 ↗ | (On Diff #14409) | I think it can't be inside try-catch, because it's used in line 30 - out of the block. Or do you mean just moving it to line 19? |
keyserver/src/database/migrations.js | ||
---|---|---|
15 ↗ | (On Diff #14409) | Yes that's what I mean |