| 43 | ].join(', '); |
| 44 | |
| 45 | export class ProfileBuffer extends BaseBuffer { |
| 46 | private readonly batchSize = process.env.PROFILE_BUFFER_BATCH_SIZE |
| 47 | ? Number.parseInt(process.env.PROFILE_BUFFER_BATCH_SIZE, 10) |
| 48 | : 200; |
nothing calls this directly
no outgoing calls
no test coverage detected