mraszyk
mraszyk
This PR specifies preconditions for installing canister code via the corresponding management canister endpoints that must be satisfied (if provided) for the call to succeed. The motivation is to prevent...
This PR replaces the limit `max_instructions_per_message_without_dts` by `max_instructions_per_query_message` since query methods are now also executed using DTS in the replicated mode of execution. Furthermore, this PR performs the following changes:...
This PR adds a node rejoin test with a slow catch-up provoked by long DSM rounds: - creating many canisters (100,000) - so that iterating over all canisters is slow;...
Steps to reproduce: 1. Run the following binary ``` use std::net::SocketAddr; use std::net::TcpListener; #[tokio::main] async fn main() { let addr = SocketAddr::from(([127, 0, 0, 1], 4943)); let listener = TcpListener::bind(addr).unwrap();...