BigtableUploadService: increment start_slot to prevent rechecks (#33870)

Increment start_slot
This commit is contained in:
Tyera 2023-10-26 09:21:20 -06:00 committed by GitHub
parent a799a90a62
commit 22503f0ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ impl BigTableUploadService {
));
match result {
Ok(last_slot_uploaded) => start_slot = last_slot_uploaded,
Ok(last_slot_uploaded) => start_slot = last_slot_uploaded.saturating_add(1),
Err(err) => {
warn!("bigtable: upload_confirmed_blocks: {}", err);
std::thread::sleep(std::time::Duration::from_secs(2));