Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Closed
Changes from 2 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
1f456c5
state replication
aeyakovenko Apr 18, 2018
efeebf5
wip
aeyakovenko Apr 18, 2018
d620ce5
update
aeyakovenko Apr 18, 2018
073e5ab
docs
aeyakovenko Apr 18, 2018
0c610c4
docs
aeyakovenko Apr 18, 2018
5e11078
Add Stephen
garious Apr 18, 2018
dea5ab2
Add erasure rust logic under feature flag
sakridge Apr 19, 2018
e949211
Merge pull request #131 from sakridge/erasure
garious Apr 19, 2018
3622533
wip
aeyakovenko Apr 19, 2018
d366a07
add gregs abstract as an intro
aeyakovenko Apr 19, 2018
903374a
Merge pull request #132 from aeyakovenko/readme
garious Apr 19, 2018
13a2f05
Remove out for immutable variable
kination Apr 19, 2018
64e2f1b
Merge pull request #133 from djKooks/rm-mut
garious Apr 19, 2018
b91f6bc
report parse errors to stderr
rleungx Apr 19, 2018
43e6741
Merge pull request #134 from rleungx/report-parse-errors-to-stderr
garious Apr 19, 2018
60015ae
report serde parse errors to stderr
rleungx Apr 19, 2018
c6048e2
Workaround linux hang
garious Apr 19, 2018
ca877e6
Merge pull request #136 from rleungx/report-errors-to-stderr
garious Apr 19, 2018
8181bc5
Add -h/--help options for client-demo and testnode
sakridge Apr 19, 2018
7390d6c
update
aeyakovenko Apr 19, 2018
89bf376
Merge pull request #138 from sakridge/help_options
garious Apr 19, 2018
10a0c47
Merge pull request #137 from garious/linux-hang
garious Apr 19, 2018
8cbb7d7
git clone instruction
Apr 20, 2018
39df21d
Merge pull request #142 from ansrivas/master
garious Apr 20, 2018
3da1fa4
improve the error messages
rleungx Apr 21, 2018
041de80
Merge pull request #144 from rleungx/improve-error-messages
garious Apr 21, 2018
3d7969d
initial crdt implementation
aeyakovenko Apr 21, 2018
55b8d0d
cleanup
aeyakovenko Apr 24, 2018
0b39c6f
Merge pull request #145 from aeyakovenko/crdt
aeyakovenko Apr 24, 2018
d69a86a
state replication
aeyakovenko Apr 18, 2018
c579f9b
wip
aeyakovenko Apr 18, 2018
3bd74cc
update
aeyakovenko Apr 18, 2018
97176dc
docs
aeyakovenko Apr 18, 2018
e493d70
docs
aeyakovenko Apr 18, 2018
37448de
wip
aeyakovenko Apr 19, 2018
9dfd18a
update
aeyakovenko Apr 19, 2018
92b8bb6
Fix some compilation issues
sakridge Apr 19, 2018
58d1ddd
Work on test_replicate to test replicate service
sakridge Apr 24, 2018
3789405
update
aeyakovenko Apr 24, 2018
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
2 changes: 1 addition & 1 deletion src/streamer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fn recv_window(
let mut contq = VecDeque::new();
while let Some(b) = dq.pop_front() {
let b_ = b.clone();
let mut p = b.write().unwrap();
let p = b.write().unwrap();
let pix = p.get_index()? as usize;
let w = pix % NUM_BLOBS;
//TODO, after the block are authenticated
Expand Down