Dashboard › cli › Async promise consumption
01a08a9b-9a54-723b-bfbf-1700a56c8749Async functions must always await promises and consume their results. Chose async/await with explicit try/catch over promise chains or fire-and-forget calls because ignored or delayed rejections make incomplete work appear successful; never use an async function as a Promise executor because the constructor cannot adopt errors thrown by that executor.