Skip to content

Commit

Permalink
Update Analyzer Manager to v1.8.8 (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas authored Jul 25, 2024
1 parent 66fb679 commit 5270481
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scanLogic/scanRunners/analyzerManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { LogUtils } from '../../log/logUtils';
export class AnalyzerManager {
private static readonly RELATIVE_DOWNLOAD_URL: string = '/xsc-gen-exe-analyzer-manager-local/v1';
private static readonly BINARY_NAME: string = 'analyzerManager';
public static readonly ANALYZER_MANAGER_VERSION: string = '1.8.3';
public static readonly ANALYZER_MANAGER_VERSION: string = '1.8.8';
public static readonly ANALYZER_MANAGER_PATH: string = Utils.addWinSuffixIfNeeded(
path.join(ScanUtils.getIssuesPath(), AnalyzerManager.BINARY_NAME, AnalyzerManager.BINARY_NAME)
);
Expand Down
2 changes: 1 addition & 1 deletion src/main/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as fs from 'fs';
import AdmZip, { IZipEntry } from 'adm-zip';

export class Utils {
private static readonly MAX_FILES_EXTRACTED_ZIP: number = 2500;
private static readonly MAX_FILES_EXTRACTED_ZIP: number = 4000;
// 1 GB
private static readonly MAX_SIZE_EXTRACTED_ZIP_BYTES: number = 1000000000;
private static readonly COMPRESSION_THRESHOLD_RATIO: number = 100;
Expand Down

0 comments on commit 5270481

Please sign in to comment.