Skip to content

Commit e6dd404

Browse files
committed
workaround: disable streaming when downloading codeql bundle
1 parent 5cb4249 commit e6dd404

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lib/tools-download.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tools-download.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tools-download.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ export async function downloadAndExtract(
8787

8888
const compressionMethod = tar.inferCompressionMethod(codeqlURL);
8989

90-
if (compressionMethod === "zstd" && process.platform === "linux") {
90+
// TODO: Re-enable streaming when we have a more reliable way to respect proxy settings.
91+
// eslint-disable-next-line no-constant-condition, no-constant-binary-expression
92+
if (false && compressionMethod === "zstd" && process.platform === "linux") {
9193
logger.info(`Streaming the extraction of the CodeQL bundle.`);
9294

9395
const toolsInstallStart = performance.now();

0 commit comments

Comments
 (0)