From a3af26845b4cecf1cdb7c01ed0c5f981dd38b0c0 Mon Sep 17 00:00:00 2001 From: Bin Chen Date: Mon, 8 Apr 2024 17:07:02 +0800 Subject: [PATCH] Update util.js --- src/util.js | 57 ----------------------------------------------------- 1 file changed, 57 deletions(-) diff --git a/src/util.js b/src/util.js index 1f133292e..c8ad0c344 100644 --- a/src/util.js +++ b/src/util.js @@ -456,63 +456,6 @@ async function forwardBedrockStreamResponse(from, to) { to.end(); } -/* Makes an HTTP/2 request to the specified endpoint. - * - * @deprecated Use `node-fetch` if possible. - * @param {string} endpoint URL to make the request to - * @param {string} method HTTP method to use - * @param {string} body Request body - * @param {object} headers Request headers - * @returns {Promise} Response body - */ -function makeHttp2Request(endpoint, method, body, headers) { - return new Promise((resolve, reject) => { - try { - const http2 = require('http2'); - const url = new URL(endpoint); - const client = http2.connect(url.origin); - - const req = client.request({ - ':method': method, - ':path': url.pathname, - ...headers, - }); - req.setEncoding('utf8'); - - req.on('response', (headers) => { - const status = Number(headers[':status']); - - if (status < 200 || status >= 300) { - reject(new Error(`Request failed with status ${status}`)); - } - - let data = ''; - - req.on('data', (chunk) => { - data += chunk; - }); - - req.on('end', () => { - console.log(data); - resolve(data); - }); - }); - - req.on('error', (err) => { - reject(err); - }); - - if (body) { - req.write(body); - } - - req.end(); - } catch (e) { - reject(e); - } - }); -} - /** * Makes an HTTP/2 request to the specified endpoint. *