Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trust the recorder not to give us more than we can serialize #187

Merged
merged 1 commit into from
May 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/accountant_skel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,9 @@ impl AccountantSkel {
// See that we made progress and a single
// vec of Events wasn't too big for a single packet
if end <= start {
eprintln!("Event too big for the blob!");
start += 1;
end = start;
continue;
// Trust the recorder to not package more than we can
// serialize
end += 1;
}

let b = blob_recycler.allocate();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/client-demo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn main() {

println!("Waiting for transactions to complete...",);
let mut tx_count;
for _ in 0..5 {
for _ in 0..10 {
tx_count = acc.transaction_count();
duration = now.elapsed();
let txs = tx_count - initial_tx_count;
Expand Down