We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b355d commit 81cb567Copy full SHA for 81cb567
packages/snaps-controllers/src/services/AbstractExecutionService.ts
@@ -193,9 +193,9 @@ export abstract class AbstractExecutionService<WorkerType>
193
194
Object.values(job.streams).forEach((stream) => {
195
try {
196
- stream.destroy();
+ stream.end();
197
} catch (error) {
198
- logError('Error while destroying stream', error);
+ logError('Error while ending stream', error);
199
}
200
});
201
0 commit comments