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 3522244 commit 5514ac1Copy full SHA for 5514ac1
.github/scripts/libmongocrypt.mjs
@@ -5,7 +5,7 @@ import child_process from 'node:child_process';
5
import events from 'node:events';
6
import path from 'node:path';
7
import https from 'node:https';
8
-import { pipeline } from 'node:stream/promises';
+import stream from 'node:stream/promises';
9
10
async function parseArguments() {
11
const jsonImport = {
@@ -169,7 +169,7 @@ if (!args.build) {
169
const [response] = await events.once(https.get(downloadURL), 'response');
170
171
const start = performance.now();
172
- await pipeline(response, unzip.stdin);
+ await stream.pipeline(response, unzip.stdin);
173
const end = performance.now();
174
175
console.error(`downloaded libmongocrypt in ${(end - start) / 1000} secs...`);
0 commit comments