Change forwarded metrics to be in line with fetch stage metrics (#4068)

automerge
This commit is contained in:
carllin 2019-04-29 13:50:14 -07:00 committed by Grimes
parent 4e41c81bc7
commit 3b2adbc9df
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ impl BankingStage {
.iter() .iter()
.flat_map(|(p, start_index)| &p.packets[**start_index..]) .flat_map(|(p, start_index)| &p.packets[**start_index..])
.collect(); .collect();
inc_new_counter_info!("banking_stage-forwarded_packets", packets.len()); inc_new_counter_info!("banking_stage-forwarded_packets", locked_packets.len());
let blobs = packet::packets_to_blobs(&packets); let blobs = packet::packets_to_blobs(&packets);
for blob in blobs { for blob in blobs {