Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e8ae567
as_ref in aleph-client for Connection types
fixxxedpoint Dec 15, 2022
528f9aa
rust API for synthetic-network's json API
fixxxedpoint Dec 14, 2022
5a98f81
refactored synthetic-link
fixxxedpoint Dec 15, 2022
9d20ad0
new e2e-tests: high out-latency
fixxxedpoint Dec 15, 2022
2bf7a6e
refactored synthetic-network bash scripts
fixxxedpoint Dec 15, 2022
8a259e0
added git submodule for synthetic-network
fixxxedpoint Dec 15, 2022
0093386
added nightly e2e test for synthetic-network
fixxxedpoint Dec 15, 2022
32eb26d
refactored synthetic-link library
fixxxedpoint Dec 15, 2022
fc1a3f0
added load_config for synthetic-network e2e test
fixxxedpoint Dec 15, 2022
64234ae
more refactoring of synthetic-link
fixxxedpoint Dec 15, 2022
75434a5
missing synthetic-link in Cargo.toml
fixxxedpoint Dec 16, 2022
415faf0
e2e-tests/config.rs cleaned
fixxxedpoint Dec 16, 2022
1ac0792
Into -> From in synthetic-link
fixxxedpoint Dec 16, 2022
55f6f14
slightly cleaned code for synthetic-network
fixxxedpoint Dec 16, 2022
26d1e53
added RUST_SRC_PATH in shell.nix for better support for IDEs
fixxxedpoint Dec 16, 2022
08269ca
slightly cleaned synthetic-link
fixxxedpoint Dec 17, 2022
59461bb
refactored synthetic-link: more types for ranged parameters
fixxxedpoint Dec 17, 2022
7bccc5d
refactored synthetic-link lib
fixxxedpoint Dec 18, 2022
5eaaaf3
added code-docs to synthetic-link
fixxxedpoint Dec 18, 2022
86b0399
using try_from for PortRange in synthetic-lib for input validation
fixxxedpoint Dec 19, 2022
0282568
Merge remote-tracking branch 'origin/main' into network_tests.synthet…
fixxxedpoint Dec 30, 2022
95a7c33
Merge remote-tracking branch 'origin/main' into network_tests.synthet…
fixxxedpoint Jan 2, 2023
31c8cf5
missing deps after merge for synthetic-network
fixxxedpoint Jan 2, 2023
10739fc
Merge remote-tracking branch 'origin/main' into network_tests.synthet…
fixxxedpoint Jan 3, 2023
8eb1410
REVERT ME testing nightly pipeline
fixxxedpoint Jan 3, 2023
98499c2
fix after merge
fixxxedpoint Jan 3, 2023
b991f75
say no to install-protoc in github pipelines
fixxxedpoint Jan 3, 2023
b2a6a9d
Revert "say no to install-protoc in github pipelines"
fixxxedpoint Jan 3, 2023
a0f76fb
GITHUB_TOKEN for "Install Protoc" action
fixxxedpoint Jan 3, 2023
01d7b68
reverted changed file permissions
fixxxedpoint Jan 3, 2023
61e2f79
reverted rust-toolchain file
fixxxedpoint Jan 3, 2023
ca97e85
typo in description for PortRange
fixxxedpoint Jan 3, 2023
03aa36e
e2e-tests: config.validator_names() uses validators_count
fixxxedpoint Jan 3, 2023
d879c86
e2e-tests: added description for the `latency` tests
fixxxedpoint Jan 3, 2023
9a8e405
shell.nix: added description for new ENV var RUST_SRC_PATH - it's for…
fixxxedpoint Jan 3, 2023
f4a646b
BACKUP: e2e-tests/config.rs with iterators
fixxxedpoint Jan 4, 2023
36287c9
new verion of the synthetic-network e2e-test that supports non-docker…
fixxxedpoint Jan 4, 2023
a899970
Merge remote-tracking branch 'origin/main' into network_tests.synthet…
fixxxedpoint Jan 4, 2023
fbd4c4d
fix for e2e-test `no_quorum_without_high_latency` - missing call for …
fixxxedpoint Jan 4, 2023
4c0a55a
extended README.md for the synthetic-network: how to run e2e-tests wi…
fixxxedpoint Jan 4, 2023
93eeb03
renamed e2e-tests for high-out-latency with synthetic-network
fixxxedpoint Jan 4, 2023
656af60
renamed one of the e2e-tests pipelines in nightly for high-latency (s…
fixxxedpoint Jan 4, 2023
f79bdb0
Revert "REVERT ME testing nightly pipeline"
fixxxedpoint Jan 4, 2023
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
fix for e2e-test no_quorum_without_high_latency - missing call for …
…urls instead of names
  • Loading branch information
fixxxedpoint committed Jan 4, 2023
commit fbd4c4df0932d4c06c42f21fef0ca6debf56c521
2 changes: 1 addition & 1 deletion e2e-tests/src/test/high_latency.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub async fn no_quorum_without_high_out_latency() -> anyhow::Result<()> {

info!("setting out-latency");
for synthetic_url in config
.validator_names()
.synthetic_network_urls()
.into_iter()
.take(((config.validator_count - 1) / 3 + 1) as usize)
{
Expand Down