()
| 27 | const BATCH_SIZE = Number.parseInt(process.env.IMPORT_BATCH_SIZE || '5000', 10); |
| 28 | |
| 29 | function yieldToEventLoop(): Promise<void> { |
| 30 | return new Promise((resolve) => { |
| 31 | setTimeout(resolve, 100); |
| 32 | }); |
| 33 | } |
| 34 | |
| 35 | const RESUMABLE_STEPS = ['creating_sessions', 'moving', 'backfilling_sessions']; |
| 36 |
no outgoing calls
no test coverage detected