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

Merge 1.6 release branch into dev #4662

Closed
wants to merge 1,198 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
1198 commits
Select commit Hold shift + click to select a range
4923dc9
Add `ActiveRoute` type
marc-casperlabs Feb 19, 2024
1de50e0
Use `ActiveRoute` for both incoming and outgoing connections
marc-casperlabs Feb 19, 2024
10f74f6
Remove `IncomingHandler` in favor of single handling function
marc-casperlabs Feb 19, 2024
3bb8617
Cleanup logging around active routes
marc-casperlabs Feb 19, 2024
5239425
More logging cleanup
marc-casperlabs Feb 19, 2024
e0121e1
Fix issue with duplicate field recording on `Span`
marc-casperlabs Feb 19, 2024
8fa4de1
Fix typo in comment
marc-casperlabs Feb 19, 2024
8905f1c
Rewrite `once_per` as `rate_limited` module, with better performance …
marc-casperlabs Feb 19, 2024
8d65b05
Add external `learn_addr` function for `ConMan`
marc-casperlabs Feb 19, 2024
f92cd2f
Graft `ConMan` onto networking component
marc-casperlabs Feb 19, 2024
d9eacbe
Add connection manager ban support
marc-casperlabs Feb 19, 2024
11f0314
Get node in a roughly compiling state again
marc-casperlabs Feb 20, 2024
a9c9d1b
Remove tarpit feature and other unused parts of the networkin context
marc-casperlabs Feb 20, 2024
cb969dd
Cleanup code handling known addresses
marc-casperlabs Feb 20, 2024
7f9da2e
Allow reading of `ConManState`
marc-casperlabs Feb 20, 2024
0ecb159
Restore message sending functionality
marc-casperlabs Feb 20, 2024
b1c890d
When broadcasting, only serialize message once
marc-casperlabs Feb 20, 2024
6723271
fixed warnings
hoffmannjan Feb 20, 2024
b9c6596
code formatted
hoffmannjan Feb 20, 2024
580fdd6
Restore functionality of `has_sufficient_fully_connected_peers` as `h…
marc-casperlabs Feb 20, 2024
91862e9
Restore functionality of `fully_connected_peers_random` as `connected…
marc-casperlabs Feb 20, 2024
c326865
Restore gossiping to the extent it was before
marc-casperlabs Feb 20, 2024
f98d4ba
Restore `peers` function, changing its signature to return `SocketAdd…
marc-casperlabs Feb 20, 2024
d829d4f
Sketch new protocol handler in `transport` module
marc-casperlabs Feb 20, 2024
9c0501a
Remove reactor event from networking context
marc-casperlabs Feb 21, 2024
0d78d42
Use `()` as the payload for the encoded handshake
marc-casperlabs Feb 21, 2024
1cb7776
Move handshake negotiation into `handshake` module
marc-casperlabs Feb 21, 2024
a69fe38
Put creation of `ConnectionId` into handshake itself
marc-casperlabs Feb 21, 2024
7c8d620
Improve cryptographic security of `ConnectionId`
marc-casperlabs Feb 21, 2024
d7124cb
Use different reconnection delay based on how long we were serving a …
marc-casperlabs Feb 21, 2024
4c835d3
Fixed issue with span registration
marc-casperlabs Feb 21, 2024
116dcbb
Note the possibility of improving reconnection times after a node id …
marc-casperlabs Feb 21, 2024
31ec87c
Complete connection setup portion of `TransportHandler`
marc-casperlabs Feb 21, 2024
8ec81df
Streamline shared code and put in proper timeouts across connection s…
marc-casperlabs Feb 21, 2024
b24b39f
Make tests compile again by removing non-existant `SweepOutgoing` eve…
marc-casperlabs Feb 21, 2024
ad074b1
Moved `TlsConnection` to `transport` module
marc-casperlabs Feb 21, 2024
8c01057
Add a handler for incoming requests to `TransportHandler`
marc-casperlabs Feb 21, 2024
8f89801
Make remote address available on route
marc-casperlabs Feb 21, 2024
9ebf70d
Restore the address functionality of `peers`
marc-casperlabs Feb 21, 2024
a54ae70
Removed `TlsConfiguration` in favor of `Identity`
marc-casperlabs Feb 22, 2024
102208b
Complete transition to networking compnent that throws away all incom…
marc-casperlabs Feb 22, 2024
e6715ed
Remove `REv` type parameter from network
marc-casperlabs Feb 22, 2024
e39138c
Implemented message deserialization on the transport handler
marc-casperlabs Feb 22, 2024
6797471
Properly pass `Span` when scheduling incoming message
marc-casperlabs Feb 22, 2024
8c1d342
Remove obsolete `ConnectionSymmetry` module
marc-casperlabs Feb 22, 2024
221b937
Remove some unused imports
marc-casperlabs Feb 22, 2024
65d7150
Remove unused imports and code in networking
marc-casperlabs Feb 22, 2024
7a8d90e
Make `NetworkContext` disappear
marc-casperlabs Feb 22, 2024
ccfe207
Restore `NetworkInsights`
marc-casperlabs Feb 22, 2024
ba4bcdb
Downgrade less informative log message
marc-casperlabs Feb 22, 2024
ca3d39b
Do not stop gossiping our address if we fail to do so once
marc-casperlabs Feb 22, 2024
82e7067
Properly set `self.public_addr` in initializer
marc-casperlabs Feb 22, 2024
d89dc25
Make equivocator test more readable
marc-casperlabs Feb 23, 2024
92dcb83
Increase message delay in equivocator test
marc-casperlabs Feb 23, 2024
bdbf2df
Disable bubble timeouts, log message sending failures, making equivoc…
marc-casperlabs Feb 23, 2024
a80dab6
Cut unused `xor` utility function
marc-casperlabs Feb 23, 2024
0774357
Report active era and consensus key in networking insights
marc-casperlabs Feb 26, 2024
caf785c
Use a symbolic direction to determine whether or not we should contin…
marc-casperlabs Feb 26, 2024
85133aa
Remove stale import
marc-casperlabs Feb 26, 2024
8af02f5
List routes in network info on diagnostics port
marc-casperlabs Feb 26, 2024
3c3c7cc
Record and report consensus key from handshake in connection insights
marc-casperlabs Feb 26, 2024
5b6d7c1
Record connection duration in networking insights
marc-casperlabs Feb 26, 2024
db2870e
Note future plan to make `unban` included in check
marc-casperlabs Feb 26, 2024
353a049
Change "permanent" backoff timer to 10 minutes
marc-casperlabs Feb 26, 2024
2191624
Repair peers metric
marc-casperlabs Feb 26, 2024
bc1e8c1
Log lost messages
marc-casperlabs Feb 26, 2024
c1a3f5d
Change torture test loglevel for `juliet` by default
marc-casperlabs Feb 26, 2024
a0763a4
Upgrade flaky connection to warning
marc-casperlabs Feb 26, 2024
9bce693
Make `unban` a part of `is_still_banned`
marc-casperlabs Feb 26, 2024
6761f35
Report `blocked` in connection insights
marc-casperlabs Feb 26, 2024
4cb99b4
Report address book and do-not-call-list in network insights
marc-casperlabs Feb 26, 2024
5d2666a
Remove unused `unban` method
marc-casperlabs Feb 26, 2024
43dd370
Update formatting of networking insights
marc-casperlabs Feb 26, 2024
66a5812
Use newer `juliet` version that includes warning messages for injecte…
marc-casperlabs Feb 27, 2024
18d538f
new implementation whith permission checks
hoffmannjan Feb 27, 2024
31ac2cd
Reimplemented burn method
hoffmannjan Feb 28, 2024
5748cc2
Bump `juliet` commit to one that includes first fix for multi-frame s…
marc-casperlabs Feb 28, 2024
dece69d
Bump `juliet` commit to one that includes second fix for multi-frame …
marc-casperlabs Feb 28, 2024
4deb7ec
first test scenerio implemented
hoffmannjan Feb 29, 2024
9f8cc0c
implemented should_not_burn_excess_tokens test
hoffmannjan Feb 29, 2024
353b70b
reimplemented client contract
hoffmannjan Feb 29, 2024
bb09705
fix deserialization error, add demo contract
igor-casper Feb 29, 2024
5b55aa1
fix warnings
hoffmannjan Feb 29, 2024
6ad426a
Read conman configuration from config file
Mar 4, 2024
0c25d47
Fix typo in a comment
Mar 5, 2024
8642b96
Add `bubble_timeouts` to network config
Mar 5, 2024
c8900ab
Add `error_timeout` to network config
Mar 5, 2024
4b96f62
Add `max_frame_size` to network config
Mar 5, 2024
05f0c32
Reduce number of args for `create_rpc_builder()`
Mar 5, 2024
877ec87
Fix typo in the comment
Mar 5, 2024
b986ab6
Use the config values in con man
Mar 5, 2024
ef55228
Use more relaxed backoff for soundness test
Mar 5, 2024
6972655
WIP
hoffmannjan Mar 5, 2024
43a3495
apply review suggestions
igor-casper Mar 5, 2024
9659031
applied fixes to burn contract
hoffmannjan Mar 5, 2024
2c59473
format fixes
hoffmannjan Mar 5, 2024
6173fff
Merge branch 'feat-1.6' into feat-burning
hoffmannjan Mar 5, 2024
6402d2f
apply clippy lints
hoffmannjan Mar 5, 2024
2bc09d6
applied fmt fixes
hoffmannjan Mar 5, 2024
f49269a
added requested changes
hoffmannjan Mar 5, 2024
631cd62
method better naming
hoffmannjan Mar 6, 2024
010a666
Make the `bubble_timeouts` enabled by default
Mar 6, 2024
a46f0f0
Move `maximum_frame_size` from config to chainspec
Mar 7, 2024
6a89178
Rephrase comments
Mar 7, 2024
4a13d72
Add conman config parameters to changelog
Mar 7, 2024
37db66c
Remove the stray `max_frame_size` parameter from the config
Mar 7, 2024
f3aa4c2
Merge pull request #9 from rafal-ch/4554_conman_config_cleanup
marc-casperlabs Mar 8, 2024
b49b2f3
Merge pull request #10 from rafal-ch/4553_change_permanent_error_back…
marc-casperlabs Mar 8, 2024
3898b2b
fix in node/src/components/network/tasks.rs
hoffmannjan Mar 12, 2024
74149a6
added audit ignore
hoffmannjan Mar 12, 2024
db8a42d
Update `juliet` version
marc-casperlabs Mar 12, 2024
376cf94
Remove obsolete TODO
marc-casperlabs Mar 12, 2024
ebdc502
Communicate error that was handled to peer
marc-casperlabs Mar 12, 2024
2a0af13
Send an error after connecting to a banned peer
marc-casperlabs Mar 12, 2024
b0b1930
Also inform incoming peer about its ban
marc-casperlabs Mar 12, 2024
86f007c
Give ban justifications to peer when encountering them
marc-casperlabs Mar 12, 2024
be75b24
Actually disconnect from peers when banning
marc-casperlabs Mar 12, 2024
e8b5445
Stringify ban messages less
marc-casperlabs Mar 12, 2024
adc347c
fixed test
hoffmannjan Mar 12, 2024
4492011
fixed formatting
hoffmannjan Mar 12, 2024
b6f83e5
Make do-not-call-timeout take ban duration into account
marc-casperlabs Mar 12, 2024
16bb5ef
Merge pull request #4573 from hoffmannjan/feat-burning
hoffmannjan Mar 12, 2024
177f9af
Merge remote-tracking branch 'upstream/dev' into feat-1.6
marc-casperlabs Mar 13, 2024
e6b473e
Merge remote-tracking branch 'upstream/feat-1.6' into 4525-connection…
marc-casperlabs Mar 13, 2024
e81202c
Remove obsolete doc comment
marc-casperlabs Mar 13, 2024
e42134d
Fix typo in docs
marc-casperlabs Mar 13, 2024
81542f1
Do not consider removing the `Route`'s `peer` field
marc-casperlabs Mar 13, 2024
06250de
Merge pull request #4551 from marc-casperlabs/4525-connection-management
marc-casperlabs Mar 13, 2024
d56b4a4
Merge remote-tracking branch 'upstream/feat-1.6' into conman-bans
marc-casperlabs Mar 13, 2024
0b7789c
Fix typo in `conman` module
marc-casperlabs Mar 13, 2024
00e768f
Add missing docs for `PeerError::banned`
marc-casperlabs Mar 13, 2024
4e72c0d
Fix another typo
marc-casperlabs Mar 13, 2024
06c7954
Remove obsolete TODO
marc-casperlabs Mar 13, 2024
dea7b0b
Improve `PeerError::YouAreBanned`'s display impl
marc-casperlabs Mar 14, 2024
5263bf0
Merge pull request #4604 from casper-network/conman-bans
marc-casperlabs Mar 14, 2024
57e9a8a
Bump `juliet` version to `0.3.0`
marc-casperlabs Mar 14, 2024
bfaf476
Remove largest specimen check and test
marc-casperlabs Mar 14, 2024
9dbc097
Make exposure of `max_rounds_per_era` a test-only thing
marc-casperlabs Mar 14, 2024
5c5c091
Pick low-hanging `EnumDiscriminants` fruit
marc-casperlabs Mar 14, 2024
b51ad85
Remove `EnumDiscrimnant` implementations hidden behind `relaxed` modules
marc-casperlabs Mar 14, 2024
06a7310
Cleanup `CHANGELOG.md` for next version a bit
marc-casperlabs Mar 14, 2024
3b24e7d
Remove `max_addr_pending_time`
marc-casperlabs Mar 14, 2024
92e30ff
Remove `max_incoming_peer_connections` config setting
marc-casperlabs Mar 14, 2024
48f4db9
Remove `max_outgoing_byte_rate_non_validators` config setting
marc-casperlabs Mar 14, 2024
5f19d9e
Remove tarpit entirely, including its leftover configuration settings
marc-casperlabs Mar 14, 2024
1ad45c4
Merge pull request #4607 from marc-casperlabs/remove-obsolete-network…
marc-casperlabs Mar 14, 2024
b8e6096
Noted networking changes in `CHANGELOG.md`
marc-casperlabs Mar 14, 2024
1c4d3d3
Merge pull request #4608 from marc-casperlabs/4555-update-changelog
marc-casperlabs Mar 14, 2024
52bb5be
Merge pull request #4606 from marc-casperlabs/remove-large-specimen-c…
marc-casperlabs Mar 14, 2024
24d6dea
Note removal of chainspec maximum message size validation
marc-casperlabs Mar 14, 2024
6fbcf49
Remove unused import
marc-casperlabs Mar 14, 2024
d7554ca
Add hooks for establishment/loss of active route on protocol handler
marc-casperlabs Mar 15, 2024
6003534
Established new queue kind `NetworkInternal`, rename existing `Networ…
marc-casperlabs Mar 18, 2024
64d5ec0
Add events for updating the route
marc-casperlabs Mar 18, 2024
ad7c0ed
Add a `key_index` to track validators in conman
marc-casperlabs Mar 18, 2024
70fb4a6
Revert "Add events for updating the route"
marc-casperlabs Mar 18, 2024
78e4cac
Revert "Established new queue kind `NetworkInternal`, rename existing…
marc-casperlabs Mar 18, 2024
55a5c2e
Revert most changes from d7554ca425382c743b464a5e6b745fa915c14d55
marc-casperlabs Mar 18, 2024
38bf284
Restore validator broadcast functionality
marc-casperlabs Mar 18, 2024
da93550
Remove unused `is_active_or_upcoming_validator` method
marc-casperlabs Mar 18, 2024
4122402
Make validator broadcasting configurable
marc-casperlabs Mar 18, 2024
07804ec
Fallback to global broadcast if there are issues
marc-casperlabs Mar 18, 2024
6572a05
Remove redundant check of validator status in broadcasting
marc-casperlabs Mar 18, 2024
f041853
Mention `use_validator_broadcast` in `CHANGELOG`
marc-casperlabs Mar 18, 2024
8249992
Fix typo in docs
marc-casperlabs Mar 18, 2024
12eec20
Handle cases where a consensus key moved across nodes
marc-casperlabs Mar 18, 2024
ddc91c2
Use correct iterator when iterating over all peers
marc-casperlabs Mar 18, 2024
aabbff5
Make usage of validator broadcast the default
marc-casperlabs Mar 19, 2024
06ce95e
Merge pull request #4612 from marc-casperlabs/validator-broadcast
marc-casperlabs Mar 19, 2024
944f17b
Improve documentation of `GossipTarget`
marc-casperlabs Mar 19, 2024
7eaf198
Add `era_validators` function to `ValidatorMatrix`
marc-casperlabs Mar 19, 2024
3dadc6a
Draft new implementation for gossip peer selection
marc-casperlabs Mar 19, 2024
e4f53f8
Cleanup new gossip target selection
marc-casperlabs Mar 19, 2024
3be88f0
Log when gossiper selection falls short
marc-casperlabs Mar 19, 2024
e48a51b
Warn when failing to select mixed target for gossiping
marc-casperlabs Mar 19, 2024
f26ed46
Make mixed-mode gossip configurable
marc-casperlabs Mar 19, 2024
891bb11
Update `CHANGELOG.md` to include mixed-mode gossip
marc-casperlabs Mar 19, 2024
7bc289a
Clarify match branch
marc-casperlabs Mar 19, 2024
88359c4
Fix typo in error message
marc-casperlabs Mar 19, 2024
8e77b4c
No need to use a `HashSet` when returning gossiped-to node IDs
marc-casperlabs Mar 19, 2024
982884a
Add `DeprecatedMetric`
marc-casperlabs Mar 19, 2024
4abaed5
Deprecate all metrics no longer in use in networking
marc-casperlabs Mar 19, 2024
2b4eb8a
Mention deprecated metrics in `CHANGELOG.md`
marc-casperlabs Mar 20, 2024
2f83a33
"Simplify" `ValidatorBoundComponent<REv> for Network<P>`
marc-casperlabs Mar 20, 2024
768e01a
Cleanup existing metrics docs before adding `net_gossip_requests`
marc-casperlabs Mar 21, 2024
6c49a9d
Add metrics for tracking memory overflow in metrics
marc-casperlabs Mar 21, 2024
4a5ecf0
Add per-channel metrics
marc-casperlabs Mar 21, 2024
828cef2
Add initialization code for channel metrics
marc-casperlabs Mar 21, 2024
3aa22ee
Reduce repetition in `PerChannel` type through reuse of `try_init_with`
marc-casperlabs Mar 21, 2024
3610b86
Mention per-channel metrics in `CHANGELOG`
marc-casperlabs Mar 21, 2024
28d9875
Fix clippy issues
marc-casperlabs Mar 25, 2024
ca82a43
Merge branch 'gossip-peer-selection' into metrics-overhaul
marc-casperlabs Mar 25, 2024
a71b8a7
Create metrics labels using `Opts` instead of concatenating strings
marc-casperlabs Mar 25, 2024
53b188a
Rate limit "global state sync is processing another request" warning
marc-casperlabs Mar 27, 2024
53b3e7f
Demote block acquisition notices from `info!` to `debug!`
marc-casperlabs Mar 27, 2024
4e4dd5a
Add test for `rate_limited`
marc-casperlabs Mar 27, 2024
4b70c55
Make rate limiting actuall drop semaphore tickets (and thus work)
marc-casperlabs Mar 27, 2024
14f959c
Refactor `RateLimited` slightly to move crucial logic into DRY method
marc-casperlabs Mar 27, 2024
2403316
Add test checking drop counts are correct
marc-casperlabs Mar 27, 2024
b3769bd
Fix issue where rate limiting would double the refresh interval unint…
marc-casperlabs Mar 28, 2024
a0bea7e
Merge branch 'fix-rate-limiting-issues' into feat-1.6
marc-casperlabs Mar 28, 2024
a525e54
Merge branch 'feat-1.6' into gossip-peer-selection
marc-casperlabs Mar 28, 2024
1b24fd3
Merge branch 'gossip-peer-selection' into metrics-overhaul
marc-casperlabs Mar 28, 2024
2bb6f38
Add `send_message_and_drop_ticket`
marc-casperlabs Apr 4, 2024
b6497c1
Replace auto-closing responder with `Ticket` in demand
marc-casperlabs Apr 4, 2024
430c9e4
Remove now obsolete `respond_none` method on `AutoClosingResponder`
marc-casperlabs Apr 4, 2024
eeecf3d
Remove now unnecessary responder creation on demands
marc-casperlabs Apr 5, 2024
f753857
Remove `TrieDemand`
marc-casperlabs Apr 5, 2024
3d33388
Remove `ConsensusDemand`
marc-casperlabs Apr 5, 2024
67fa4c6
Remove last traces of demands
marc-casperlabs Apr 5, 2024
3f006c3
Thread `Ticket` logic through consensus, with best effort
marc-casperlabs Apr 5, 2024
3c9a88b
Thread `Ticket`s through gossiper message handling
marc-casperlabs Apr 5, 2024
41c49ca
Thread `Ticket`s through `NetRequest` handling
marc-casperlabs Apr 5, 2024
49c242b
Thread `Ticket`s through fetcher response handling
marc-casperlabs Apr 5, 2024
4d8e205
Thread `Ticket`s through finality signature handling
marc-casperlabs Apr 5, 2024
708c9fd
Improve ticket propagation of gossiper
marc-casperlabs Apr 5, 2024
e4c87e0
Fix formatting issues on comments
marc-casperlabs Apr 8, 2024
1df64c6
Unbox parameter in `handle_net_request_incoming`
marc-casperlabs Apr 8, 2024
ce2cee5
Make `Ticket` on block reception optional
marc-casperlabs Apr 8, 2024
ffd3d87
Make `Ticket` on finality signature and deploy reception optional
marc-casperlabs Apr 8, 2024
fcc716e
Revert "Make `Ticket` on finality signature and deploy reception opti…
marc-casperlabs Apr 8, 2024
87ffae2
Revert "Make `Ticket` on block reception optional"
marc-casperlabs Apr 8, 2024
7a8db22
Use a "ticket stub" instead of the test-only-gated method `Ticket::cr…
marc-casperlabs Apr 8, 2024
4258b52
Correctly use era validators again when broadcasting in specific era
marc-casperlabs Apr 8, 2024
21eb439
Merge pull request #4615 from marc-casperlabs/gossip-peer-selection
marc-casperlabs Apr 10, 2024
f09efa9
Merge pull request #4634 from marc-casperlabs/4505-reduce-warnings-fr…
marc-casperlabs Apr 10, 2024
a22fea6
Merge pull request #4623 from marc-casperlabs/metrics-overhaul
marc-casperlabs Apr 10, 2024
5cc9f3a
Merge remote-tracking branch 'upstream/feat-1.6' into ticket-threading
marc-casperlabs Apr 10, 2024
a05bdcd
Adjust testing banning and conman timeouts to make `run_equivocator_n…
marc-casperlabs Apr 10, 2024
a9cb5b1
Merge remote-tracking branch 'upstream/feat-1.6' into ticket-threading
marc-casperlabs Apr 10, 2024
a3c021a
Merge remote-tracking branch 'origin/ticket-threading' into ticket-th…
marc-casperlabs Apr 10, 2024
19e6008
Fix issues with non-intentional doctests causing test failures
marc-casperlabs Apr 10, 2024
13efb71
Update `h2` to solve audit issue
marc-casperlabs Apr 10, 2024
77cfce2
Merge remote-tracking branch 'upstream/dev' into feat-1.6
marc-casperlabs Apr 11, 2024
d847f37
Reflect recent changes to defaults in production chainspec
marc-casperlabs Apr 11, 2024
95e6bec
Document `ValidatorBoundComponent`
marc-casperlabs Apr 11, 2024
c86f697
Re-add `is_active_or_upcoming_validator`
marc-casperlabs Apr 11, 2024
c056571
Leverage validator matrix to restore incoming request prioritization
marc-casperlabs Apr 11, 2024
277caee
Merge pull request #4660 from marc-casperlabs/chainspec-cost-update
marc-casperlabs Apr 11, 2024
2e92c83
Merge remote-tracking branch 'upstream/feat-1.6' into ticket-threading
marc-casperlabs Apr 11, 2024
bb272f7
Add notice about rate limited log messages to `CHANGELOG.md`
marc-casperlabs Apr 11, 2024
fbde36e
Bump `rmp-serde` version due to security issues
marc-casperlabs Apr 11, 2024
d2674aa
Bump `structopt` due to potential security issues
marc-casperlabs Apr 11, 2024
68c8223
Update `tokio` to latest version
marc-casperlabs Apr 11, 2024
c9aa98c
Revert "Bump `rmp-serde` version due to security issues"
marc-casperlabs Apr 11, 2024
1a506c1
Merge pull request #4661 from marc-casperlabs/incoming-message-priori…
marc-casperlabs Apr 12, 2024
4ae3554
Merge remote-tracking branch 'upstream/feat-1.6' into ticket-threading
marc-casperlabs Apr 12, 2024
c0911be
Merge pull request #4651 from marc-casperlabs/ticket-threading
marc-casperlabs Apr 18, 2024
468be20
Disable mixed gossip by default
marc-casperlabs Apr 18, 2024
49bfa8b
Log failed handshakes at `info` level
marc-casperlabs Apr 18, 2024
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
3 changes: 2 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,7 @@ steps:

- name: nctl-nightly-tests
<<: *buildenv
image: casperlabs/node-build-u2004
environment:
AWS_ACCESS_KEY_ID:
from_secret: put-drone-aws-ak
Expand Down Expand Up @@ -517,4 +518,4 @@ volumes:
temp: {}

trigger:
cron: [ nightly-tests-cron ]
cron: [ nightly-tests-cron, nightly-tests-cron-1-6 ]
Loading
Loading