🐛Fixed problem with zero size heapdump when running inside docker
⬆️Upgraded node-types to the current version on nodejs
This commit is contained in:
committed by
Anton Shepilov
parent
20d128d990
commit
b985f0357e
@@ -43,7 +43,7 @@ export const writeToTemporaryFile = async (input: Readable, extension: string):
|
||||
|
||||
input.pipe(writable);
|
||||
|
||||
await new Promise(r => {
|
||||
await new Promise<void>(r => {
|
||||
writable.on("finish", r);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user