for await()

in app/v4/src/utils/streamHttp.ts [40:47]


    for await (const chunk of stream) {
        if (Date.now() > nextLogTime) {
            nextLogTime = Date.now() + logInterval;
            console.log(`Progress: ${convertBToMb(bytesReceived)}mb`);
        }

        bytesReceived += chunk.length;
    }