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

performance improvements and network bug fixes #131

Merged
merged 42 commits into from
Oct 17, 2019
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0c04ef1
Add logging for hard replay progress. Resolves #6531.
Dec 28, 2018
fdee487
Fix comment on max trx decompressed size
Jan 29, 2019
6cfa400
Changed to report from peer's LIB, since we don't know if any blocks …
Feb 15, 2019
e606e85
Ensure that a caught-up nodeos reports its new handshake status to ot…
Feb 15, 2019
28a0916
Clear connection node_id to prevent invalid self connect error
Jul 23, 2019
0017e95
Don't do needest work on peer request outside valid range
Jul 18, 2019
9f694cf
fix fork resolve special case
Jul 17, 2019
2e76aa9
Re-create socket on re-connect. Use non-deprecated async_connect.
Aug 12, 2019
32e3abf
merge fix
Sep 10, 2019
1969f14
attempt to fix bad prepared cert
Sep 10, 2019
91018c5
Fix for issue gh#6466 sync
Dec 20, 2018
b969b95
Add remote endpoint peer name to dup connection check
Feb 22, 2019
15b3ea9
fix bug in get_block of chain_plugin which could cause unnecessary fa…
Mar 9, 2019
61fd86f
Check for default transaction id which is possible if file/string doe…
Feb 25, 2019
26c572f
Add automatic handling of action.data if action.hex_data is available…
Feb 25, 2019
1c4a8cb
Prevent core dump by catching exception
Apr 8, 2019
845f900
#6980: memory leak when --trace-history not used
Apr 11, 2019
ee1cbab
Do not update connection fork_head info if in lib_catchup since we sh…
Sep 11, 2019
5d0e5ac
Only request_message for our head greater than msg.head when we suspe…
Aug 30, 2019
1417a13
Update comment for new behavior
Sep 3, 2019
a687eef
Merge branch 'fix-cert-gen' into feature/dpos-pbft-bos-optimise
VincentOCL Sep 19, 2019
73003e3
Log replay progress to logging system.
Jan 16, 2019
17c6b3a
allow opening block log with no blocks (fixes undefined behavior bug)…
Sep 19, 2019
16ef1dd
Remove unneeded request_message
Sep 20, 2019
a12b59a
sync_master recv_block only called on valid blocks, so don't disconne…
Sep 21, 2019
7134004
Check for out of date last irreversible block notice
Sep 22, 2019
829585e
get_block_id_for_num will throw unknown_block_exception when block nu…
Sep 18, 2019
60d6324
Fix #7767 - node never identified its peer is done syncying
Sep 17, 2019
187d02b
#7766 - report peer address on close
Sep 17, 2019
033f246
Fix problem with keepalive timer sometimes causing a crash on exit be…
Sep 25, 2019
c439b5f
Make sure plugin_shutdown is called in case of exception in plugin_st…
Sep 16, 2019
c855e40
WebAssembly checktime fixes
Sep 24, 2019
efd5143
Merge branch 'fix-cert-gen' into feature/dpos-pbft-bos-optimise
VincentOCL Sep 30, 2019
3036e5f
Merge remote-tracking branch 'origin/fix-wasm' into feature/bos-develop
VincentOCL Oct 4, 2019
af99251
fix merge from socket branch
Oct 4, 2019
759b6d6
Remove unneeded read_in_flight. Clear trx_in_progress_size on close s…
Aug 19, 2019
f864452
fix merge
Oct 10, 2019
e39d5f6
Capture socket on async_read to prevent close from destroying socket …
Oct 10, 2019
191416f
fix sync stable checkpoints
Oct 11, 2019
3ab79c7
attempt to fix the crash
Oct 15, 2019
746a76d
merge more commits from upstream
Oct 16, 2019
b6100f4
Merge branch 'release/3.0.x' into feature/bos-develop
oldcold Oct 17, 2019
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
Prev Previous commit
Next Next commit
Ensure that a caught-up nodeos reports its new handshake status to ot…
…her connected nodeos. GH EOSIO#6755

(cherry picked from commit 2b3f266)
  • Loading branch information
vince authored and VincentOCL committed Sep 10, 2019
commit e606e85554e25fddcd2410601ea81b0fb994e7d1
4 changes: 4 additions & 0 deletions plugins/net_plugin/net_plugin.cpp
Original file line number Diff line number Diff line change
@@ -1780,6 +1780,10 @@ namespace eosio {
set_state(head_catchup);
}
}

if (state == in_sync) {
send_handshakes();
}
}
else if (state == lib_catchup) {
if( blk_num == sync_known_lib_num ) {