Merge pull request #10491 from fidencio/topic/fix-typo-in-the-ephemeral-handler

agent: fix typo on getting EphemeralHandler size option
This commit is contained in:
Fabiano Fidêncio 2024-11-06 10:31:48 +01:00 committed by GitHub
commit ea8114833c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -170,7 +170,7 @@ impl EphemeralHandler {
let size = size_str
.unwrap()
.parse::<u64>()
.context(format!("parse size: {:?}", &pagesize_str))?;
.context(format!("parse size: {:?}", &size_str))?;
Ok((pagesize, size))
}