Prevent uncaught exception in download of Techdocs Azure Blob Storage publisher

Signed-off-by: Taras <tarasm@gmail.com>
This commit is contained in:
Taras
2021-04-24 11:23:56 -04:00
parent 08a022fcdf
commit f940c38378
@@ -221,7 +221,8 @@ export class AzureBlobStoragePublish implements PublisherBase {
.on('end', () => {
resolve(Buffer.concat(fileStreamChunks));
});
});
})
.catch(reject);
});
}