Tweaks from code review

Co-authored-by: Dustin J. Mitchell <dustin@v.igoro.us>
This commit is contained in:
dbr/Ben 2021-09-04 12:05:30 +09:30 committed by GitHub
parent 86deed3197
commit 477bf9e328
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -288,7 +288,7 @@ impl<'t> StorageTxn for Txn<'t> {
let rows: Vec<Result<(usize, Uuid), _>> = rows.collect();
let mut res = Vec::with_capacity(rows.len());
for _ in 0..self.get_next_working_set_number().context("HUh")? {
for _ in 0..self.get_next_working_set_number().context("Getting working set number")? {
res.push(None);
}
for r in rows {