Skip to content

Commit

Permalink
Fix large blobs config for test release
Browse files Browse the repository at this point in the history
We renamed the test feature in the apps crate from test to nk3-test and
missed that it was still used for setting the large blobs config.
  • Loading branch information
robin-nitrokey committed Jun 25, 2024
1 parent 7f857be commit 3fd83c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/apps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ impl<R: Runner> App<R> for FidoApp<R> {
} else {
Some(core::time::Duration::from_secs(2))
};
let large_blobs = if cfg!(feature = "test") && runner.is_efs_available() {
let large_blobs = if cfg!(feature = "nk3-test") && runner.is_efs_available() {
Some(fido_authenticator::LargeBlobsConfig {
location: Location::External,
max_size: 4096,
Expand Down

0 comments on commit 3fd83c9

Please sign in to comment.