Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
baea488
ci: initial fuzzer job
Mar 12, 2021
5b4c169
erasure-coding: update fuzzer Cargo.lock
Mar 12, 2021
2a2b8e3
syntax fix
Mar 12, 2021
68485a2
try this first
Mar 12, 2021
9e18f14
install honggfuzz deps
Mar 12, 2021
2a14d38
try not
Mar 12, 2021
007e345
try if else
Mar 12, 2021
091dcf0
try SIGINT
Mar 13, 2021
be927b2
ignore hfuzz dirs
Mar 13, 2021
0549076
???
Mar 13, 2021
7ca6f2b
bash is growing on me
Mar 13, 2021
225da3d
decouple builds from running
Mar 13, 2021
ec489f5
fix a typo
Mar 13, 2021
8a11653
try copying dirs
Mar 13, 2021
d0cea26
fix indentation
Mar 13, 2021
695cc0d
try using absolute paths
Mar 13, 2021
2bd647c
another try
Mar 13, 2021
8174515
caching is not worth it
Mar 13, 2021
6701361
remove outdated needs
Mar 13, 2021
d1e58a4
cleanup and add futher TODOs
Mar 13, 2021
c3bd79c
Update .github/workflows/honggfuzz.yml
Mar 15, 2021
48a7832
more diagnostic logs for approval-voting (#2618)
rphmeier Mar 12, 2021
517b26c
Backing and collator protocol traces including para-id (#2620)
rphmeier Mar 14, 2021
2b26019
add tracing when no assignment in candidate selection (#2623)
rphmeier Mar 14, 2021
4078d11
New slots/auctions architecture (#2294)
gavofyork Mar 14, 2021
92165dd
update ring to 0.16.20 (#2626)
Mar 15, 2021
d2bb9f6
Remove TODO from substrate#2986 (#2628)
shawntabrizi Mar 15, 2021
b82964e
Companion for sub/8176 (#2622)
kianenigma Mar 16, 2021
326e7a7
Add /data symlink to Docker containers (#2627)
s3krit Mar 16, 2021
bcb8e98
Fix wrong deposit amount in council voters. (#2562)
kianenigma Mar 17, 2021
8661baf
re benchmark (#2630)
kianenigma Mar 17, 2021
8debc0a
Reduce number of active leaves at startup (#2631)
bkchr Mar 17, 2021
419b58b
yet another set of logging improvements (#2638)
rphmeier Mar 17, 2021
4c8c8d7
Polkadot companion for Substrate PR #7640 (Store multiple Justificati…
octol Mar 17, 2021
6c2f47b
Companion for Substrate#8386 (#2634)
bkchr Mar 17, 2021
04c5e29
Request based collation fetching (#2621)
eskimor Mar 18, 2021
ac84870
Companion for #8372 (Replace 'Module' with 'Pallet' in construct_runt…
shaunxw Mar 18, 2021
afcbfd3
integrate faster erasure code (#2608)
drahnr Mar 18, 2021
ccc1ac5
Update for the new substrate client API (#2570)
arkpar Mar 18, 2021
07674b0
Improve the logging (#2645)
bkchr Mar 18, 2021
6061fba
Don't accept incoming connections for collators (#2644)
eskimor Mar 19, 2021
86333c5
fix reconstruct fuzzer name
Mar 19, 2021
67e3cec
make script more robust
Mar 19, 2021
bc2155e
Merge branch 'master' into ao-ci-fuzzer-jobs
Mar 19, 2021
89cf1a6
Merge branch 'master' into ao-ci-fuzzer-jobs
Mar 19, 2021
9759cb6
REVERTME: test run
Mar 19, 2021
58375df
REVERTME: test run II
Mar 19, 2021
a5527ff
Revert "REVERTME: test run II"
Mar 19, 2021
a430eab
Revert "REVERTME: test run"
Mar 19, 2021
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
Improve the logging (#2645)
  • Loading branch information
bkchr authored and Andronik Ordian committed Mar 19, 2021
commit 07674b0766b8acebe177850f7886c554ecde047c
2 changes: 1 addition & 1 deletion node/collation-generation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ async fn handle_new_activations<Context: SubsystemContext>(

tracing::debug!(
target: LOG_TARGET,
candidate_hash = %ccr.hash(),
candidate_hash = ?ccr.hash(),
?pov_hash,
?relay_parent,
para_id = %scheduled_core.para_id,
Expand Down
2 changes: 2 additions & 0 deletions node/core/backing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,8 @@ impl CandidateBackingJob {
tracing::debug!(
target: LOG_TARGET,
candidate_hash = ?candidate_hash,
relay_parent = ?self.parent,
para_id = %backed.candidate.descriptor.para_id,
"Candidate backed",
);

Expand Down
57 changes: 28 additions & 29 deletions node/network/availability-recovery/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,6 @@ async fn handle_from_interaction(

let token = state.connecting_validators.push(rx);

println!("pushing full data request");
state.discovering_validators.entry(id).or_default().push(Awaited::FullData(AwaitedData {
validator_index,
candidate_hash,
Expand Down Expand Up @@ -848,11 +847,11 @@ async fn handle_network_update(

tracing::trace!(
target: LOG_TARGET,
"Responding({}) to chunk request req_id={} candidate={} index={}",
chunk.is_some(),
request_id,
candidate_hash,
validator_index.0,
data_set = %chunk.is_some(),
%request_id,
?candidate_hash,
validator_index = validator_index.0,
"Responding to chunk request",
);

// Whatever the result, issue an
Expand All @@ -878,11 +877,11 @@ async fn handle_network_update(
Some((peer_id, Awaited::Chunk(awaited_chunk))) if peer_id == peer => {
tracing::trace!(
target: LOG_TARGET,
"Received chunk response({}) req_id={} candidate={} index={}",
chunk.is_some(),
request_id,
awaited_chunk.candidate_hash,
awaited_chunk.validator_index.0,
data_set = %chunk.is_some(),
%request_id,
candidate_hash = ?awaited_chunk.candidate_hash,
validator_index = awaited_chunk.validator_index.0,
"Received chunk response",
);

// If there exists an entry under r_id, remove it.
Expand Down Expand Up @@ -917,10 +916,10 @@ async fn handle_network_update(

tracing::trace!(
target: LOG_TARGET,
"Responding({}) to full data request req_id={} candidate={}",
full_data.is_some(),
request_id,
candidate_hash,
data_set = full_data.is_some(),
%request_id,
?candidate_hash,
"Responding to full data request",
);

// Whatever the result, issue an
Expand All @@ -946,10 +945,10 @@ async fn handle_network_update(
Some((peer_id, Awaited::FullData(awaited))) if peer_id == peer => {
tracing::trace!(
target: LOG_TARGET,
"Received full data response({}) req_id={} candidate={}",
data.is_some(),
request_id,
awaited.candidate_hash,
%request_id,
candidate_hash = ?awaited.candidate_hash,
data_set = %data.is_some(),
"Received full data response",
);

// If there exists an entry under r_id, remove it.
Expand Down Expand Up @@ -999,11 +998,11 @@ async fn issue_request(
Awaited::Chunk(ref awaited_chunk) => {
tracing::trace!(
target: LOG_TARGET,
"Requesting chunk req_id={} peer_id={} candidate={} index={}",
request_id,
peer_id,
awaited_chunk.candidate_hash,
awaited_chunk.validator_index.0,
%request_id,
%peer_id,
candidate_hash = ?awaited_chunk.candidate_hash,
validator_index = %awaited_chunk.validator_index.0,
"Requesting chunk",
);

protocol_v1::AvailabilityRecoveryMessage::RequestChunk(
Expand All @@ -1015,11 +1014,11 @@ async fn issue_request(
Awaited::FullData(ref awaited_data) => {
tracing::trace!(
target: LOG_TARGET,
"Requesting full data req_id={} peer_id={} candidate={} index={}",
request_id,
peer_id,
awaited_data.candidate_hash,
awaited_data.validator_index.0,
%request_id,
%peer_id,
candidate_hash = ?awaited_data.candidate_hash,
validator_index = %awaited_data.validator_index.0,
"Requesting full data",
);

protocol_v1::AvailabilityRecoveryMessage::RequestFullData(
Expand Down
2 changes: 1 addition & 1 deletion node/network/collator-protocol/src/validator_side.rs
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ where
Ok(pov) => {
tracing::debug!(
target: LOG_TARGET,
para_id = ?para_id,
para_id = %para_id,
hash = ?hash,
candidate_hash = ?receipt.hash(),
"Received collation",
Expand Down