Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rust/codeql-extractor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ options:
title: Controls compression for the TRAP files written by the extractor.
description: >
This option is only intended for use in debugging the extractor. Accepted
values are 'gzip' (to write gzip-compressed TRAP) 'zstd' (to write
Zstandard-compressed TRAP) and 'none' (the default, to write uncompressed
values are 'gzip' (to write gzip-compressed TRAP) 'zstd' (the default,
to write Zstandard-compressed TRAP) and 'none' (to write uncompressed
TRAP).
type: string
pattern: "^(none|gzip|zstd)$"
Expand Down
2 changes: 1 addition & 1 deletion rust/extractor/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ use std::path::{Path, PathBuf};
#[serde(rename_all = "lowercase")]
#[clap(rename_all = "lowercase")]
pub enum Compression {
#[default] // TODO make gzip default
None,
Gzip,
#[default]
Zstd,
Comment thread
hvitved marked this conversation as resolved.
}

Expand Down
Loading