rad:zwTxygwuz5LDGBq255RA2CbNGrz8
radicle-ci-broker938f627443bb28e12e8928dbf168ad1ca5868b27
{ "request": "trigger", "version": 1, "event_type": "push", "repository": { "id": "rad:zwTxygwuz5LDGBq255RA2CbNGrz8", "name": "radicle-ci-broker", "description": "Radicle CI broker", "private": false, "default_branch": "main", "delegates": [ "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV", "did:key:z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT" ] }, "pusher": { "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV", "alias": "liw" }, "before": "938f627443bb28e12e8928dbf168ad1ca5868b27", "after": "938f627443bb28e12e8928dbf168ad1ca5868b27", "branch": "", "commits": [ "938f627443bb28e12e8928dbf168ad1ca5868b27" ] }
.radicle/native.yaml
shell: | cargo --version rustc --version cargo fmt --check cargo clippy --all-targets --workspace -- -Dwarnings cargo build --all-targets --workspace cargo doc --workspace cargo test --workspace --no-fail-fast subplot docgen ci-broker.subplot -o doc/ci-broker.html make -C doc publish
git clone /home/_rad/.radicle/storage/zwTxygwuz5LDGBq255RA2CbNGrz8 /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
git config advice.detachedHead false
git checkout 938f627443bb28e12e8928dbf168ad1ca5868b27
git show 938f627443bb28e12e8928dbf168ad1ca5868b27
timeout 600 bash -c set -xeuo pipefail
cargo --version
rustc --version
cargo fmt --check
cargo clippy --all-targets --workspace -- -Dwarnings
cargo build --all-targets --workspace
cargo doc --workspace
cargo test --workspace --no-fail-fast
subplot docgen ci-broker.subplot -o doc/ci-broker.html
make -C doc publish
git clone /home/_rad/.radicle/storage/zwTxygwuz5LDGBq255RA2CbNGrz8 /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
Command arguments:
"git"
"clone"
"/home/_rad/.radicle/storage/zwTxygwuz5LDGBq255RA2CbNGrz8"
"/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src"
In directory: /
Exit code: 0
Output (stdout and stderr):
Cloning into '/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src'... done.
git config advice.detachedHead false
Command arguments:
"git"
"config"
"advice.detachedHead"
"false"
In directory: /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
Exit code: 0
git checkout 938f627443bb28e12e8928dbf168ad1ca5868b27
Command arguments:
"git"
"checkout"
"938f627443bb28e12e8928dbf168ad1ca5868b27"
In directory: /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
Exit code: 0
Output (stdout and stderr):
HEAD is now at 938f627 feat: cibtool event add --base value is not rev-parsed
git show 938f627443bb28e12e8928dbf168ad1ca5868b27
Command arguments:
"git"
"show"
"938f627443bb28e12e8928dbf168ad1ca5868b27"
In directory: /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
Exit code: 0
Output (stdout and stderr):
commit 938f627443bb28e12e8928dbf168ad1ca5868b27 Author: Lars Wirzenius <liw@liw.fi> Date: Fri Oct 11 08:58:21 2024 +0300 feat: cibtool event add --base value is not rev-parsed This allows a value of, say, HEAD, which is convenient. Signed-off-by: Lars Wirzenius <liw@liw.fi> diff --git a/ci-broker.md b/ci-broker.md index c7f3cd5..6c66d23 100644 --- a/ci-broker.md +++ b/ci-broker.md @@ -910,12 +910,11 @@ given an installed cibtool when I run cibtool --db x.db event list then stdout is exactly "" -when I run bash radenv.sh cibtool --db x.db event add --repo testy --ref main --commit HEAD --base c0ffee --id-file id.txt +when I run bash radenv.sh cibtool --db x.db event add --repo testy --ref main --commit HEAD --base HEAD --id-file id.txt when I run cibtool --db x.db event show --id-file id.txt then stdout contains "rad:" then stdout contains "main" -then stdout contains "c0ffee" when I run cibtool --db x.db event remove --id-file id.txt diff --git a/src/bin/cibtoolcmd/event.rs b/src/bin/cibtoolcmd/event.rs index 828c80a..0a8e2ea 100644 --- a/src/bin/cibtoolcmd/event.rs +++ b/src/bin/cibtoolcmd/event.rs @@ -81,10 +81,10 @@ pub struct AddEvent { #[clap(long)] commit: String, - /// The base commit referred to by the event. Optional, but must - /// be a SHA commit id. + /// The base commit referred to by the event. The value is parsed + /// the same way as `--commit` value. #[clap(long)] - base: Option<Oid>, + base: Option<String>, /// Write the event to this file, as JSON, instead of adding it to /// the queue. @@ -168,7 +168,12 @@ impl Leaf for AddEvent { RefString::try_from(name.clone()).map_err(|e| CibToolError::RefString(name, e))?; let event = if let Some(base) = &self.base { - CiEvent::branch_updated(nid, rid, &name, oid, *base) + let base = if let Ok(base) = Oid::from_str(base) { + base + } else { + self.lookup_commit(rid, base)? + }; + CiEvent::branch_updated(nid, rid, &name, oid, base) .map_err(CibToolError::BranchCreted)? } else { CiEvent::branch_created(nid, rid, &name, oid).map_err(CibToolError::BranchCreted)?
timeout 600 bash -c set -xeuo pipefail
cargo --version
rustc --version
cargo fmt --check
cargo clippy --all-targets --workspace -- -Dwarnings
cargo build --all-targets --workspace
cargo doc --workspace
cargo test --workspace --no-fail-fast
subplot docgen ci-broker.subplot -o doc/ci-broker.html
make -C doc publish
Command arguments:
"timeout"
"600"
"bash"
"-c"
"set -xeuo pipefail\ncargo --version\nrustc --version\n\ncargo fmt --check\ncargo clippy --all-targets --workspace -- -Dwarnings\ncargo build --all-targets --workspace\ncargo doc --workspace\ncargo test --workspace --no-fail-fast\n\nsubplot docgen ci-broker.subplot -o doc/ci-broker.html\nmake -C doc publish\n"
In directory: /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src
Exit code: 101
Output (stdout and stderr):
+ cargo --version cargo 1.80.1 (376290515 2024-07-16) + rustc --version rustc 1.80.1 (3f5fd8dd4 2024-08-06) + cargo fmt --check + cargo clippy --all-targets --workspace -- -Dwarnings Compiling proc-macro2 v1.0.86 Compiling unicode-ident v1.0.13 Compiling version_check v0.9.5 Compiling libc v0.2.158 Compiling typenum v1.17.0 Checking cfg-if v1.0.0 Compiling serde v1.0.210 Compiling shlex v1.3.0 Compiling thiserror v1.0.63 Compiling memchr v2.7.4 Compiling once_cell v1.20.0 Compiling syn v1.0.109 Compiling byteorder v1.5.0 Compiling bitflags v2.6.0 Checking subtle v2.6.1 Compiling rustix v0.38.37 Compiling crossbeam-utils v0.8.20 Compiling pkg-config v0.3.30 Compiling linux-raw-sys v0.4.14 Compiling anyhow v1.0.89 Compiling itoa v1.0.11 Compiling log v0.4.22 Compiling generic-array v0.14.7 Compiling ahash v0.8.11 Compiling regex-syntax v0.8.4 Checking cpufeatures v0.2.14 Compiling same-file v1.0.6 Compiling time-core v0.1.2 Compiling allocator-api2 v0.2.18 Compiling utf8parse v0.2.2 Compiling num-conv v0.1.0 Compiling walkdir v2.5.0 Compiling aho-corasick v1.1.3 Compiling anstyle-parse v0.2.5 Compiling time-macros v0.2.18 Compiling is_terminal_polyfill v1.70.1 Compiling colorchoice v1.0.2 Compiling anstyle v1.0.8 Compiling anstyle-query v1.1.1 Compiling ucd-trie v0.1.6 Compiling quote v1.0.37 Compiling bstr v1.10.0 Compiling libm v0.2.8 Compiling unic-common v0.9.0 Compiling anstream v0.6.15 Compiling heck v0.5.0 Compiling crossbeam-epoch v0.9.18 Compiling syn v2.0.77 Compiling jobserver v0.1.32 Compiling getrandom v0.2.15 Compiling unicode-width v0.1.13 Compiling vcpkg v0.2.15 Compiling doc-comment v0.3.3 Compiling rand_core v0.6.4 Compiling powerfmt v0.2.0 Compiling unic-char-range v0.9.0 Compiling cc v1.1.19 Compiling deranged v0.3.11 Compiling unic-char-property v0.9.0 Compiling crossbeam-deque v0.8.5 Compiling unic-ucd-version v0.9.0 Compiling unicase v2.7.0 Compiling proc-macro-error-attr v1.0.4 Compiling encoding_rs v0.8.34 Compiling serde_json v1.0.128 Checking tinyvec_macros v0.1.1 Compiling fastrand v2.1.1 Compiling arraydeque v0.5.1 Compiling strsim v0.11.1 Compiling clap_lex v0.7.2 Checking crypto-common v0.1.6 Checking block-padding v0.3.3 Checking block-buffer v0.10.4 Checking universal-hash v0.5.1 Checking inout v0.1.3 Compiling clap_builder v4.5.17 Checking digest v0.10.7 Checking tinyvec v1.8.0 Checking cipher v0.4.4 Compiling unic-ucd-segment v0.9.0 Compiling proc-macro-error v1.0.4 Checking signature v1.6.4 Compiling ryu v1.0.18 Compiling smawk v0.3.2 Compiling unicode-linebreak v0.1.5 Compiling tempfile v3.12.0 Compiling pulldown-cmark v0.12.1 Compiling regex-automata v0.4.7 Compiling time v0.3.36 Compiling deunicode v1.6.0 Compiling amplify_syn v2.0.1 Checking opaque-debug v0.3.1 Compiling slug v0.1.6 Checking unicode-normalization v0.1.23 Compiling humansize v2.1.3 Compiling textwrap v0.16.1 Compiling unic-segment v0.9.0 Checking ed25519 v1.5.3 Compiling getopts v0.2.21 Compiling subplot v0.11.0 Compiling utf8-width v0.1.7 Compiling libz-sys v1.1.20 Compiling pikchr v0.1.3 Compiling libgit2-sys v0.17.0+1.8.1 Compiling pulldown-cmark-escape v0.11.0 Compiling lazy_static v1.5.0 Checking unicode-bidi v0.3.15 Compiling humantime v2.1.0 Compiling percent-encoding v2.3.1 Checking amplify_num v0.5.3 Checking ct-codecs v1.1.2 Checking ascii v1.1.0 Checking ec25519 v0.1.0 Checking form_urlencoded v1.2.1 Compiling sqlite3-src v0.5.1 Checking idna v0.5.0 Compiling html-escape v0.2.13 Checking polyval v0.6.2 Compiling amplify_derive v4.0.1 Checking sha2 v0.10.8 Compiling tracing-core v0.1.32 Compiling file_diff v1.0.0 Compiling pin-project-lite v0.2.14 Checking keccak v0.1.5 Compiling line-col v0.2.1 Compiling base64 v0.22.1 Checking base64ct v1.6.0 Checking sha3 v0.10.8 Checking ghash v0.5.1 Checking ctr v0.9.2 Checking aes v0.8.4 Checking aead v0.5.2 Checking pem-rfc7468 v0.7.0 Checking equivalent v1.0.1 Compiling cfg_aliases v0.2.1 Compiling data-encoding v2.6.0 Checking base32 v0.4.0 Checking hashbrown v0.14.5 Compiling regex v1.10.6 Compiling globset v0.4.15 Compiling nix v0.29.0 Checking aes-gcm v0.10.3 Checking ssh-encoding v0.2.0 Checking blowfish v0.9.1 Checking poly1305 v0.8.0 Checking chacha20 v0.9.1 Compiling ignore v0.4.23 Compiling env_filter v0.1.2 Checking cbc v0.1.2 Checking pbkdf2 v0.12.2 Checking indexmap v2.5.0 Compiling adler2 v2.0.0 Compiling env_logger v0.11.5 Checking zeroize v1.8.1 Checking radicle-std-ext v0.1.0 Compiling miniz_oxide v0.8.0 Checking bcrypt-pbkdf v0.10.0 Checking ssh-cipher v0.2.0 Checking rand v0.8.5 Compiling data-encoding-macro-internal v0.1.13 Compiling xattr v1.3.1 Compiling filetime v0.2.25 Compiling crc32fast v1.4.2 Compiling slog v2.7.0 Compiling globwalk v0.9.1 Checking base-x v0.2.11 Checking signature v2.2.0 Checking ssh-key v0.6.6 Compiling flate2 v1.0.33 Compiling tar v0.4.41 Checking qcheck v1.0.0 Checking cvt v0.1.2 Checking data-encoding-macro v0.1.15 Checking multibase v0.9.1 Compiling glob v0.3.1 Checking terminal_size v0.3.0 Checking radicle-dag v0.9.0 Checking normpath v1.3.0 Checking base64 v0.21.7 Checking amplify v4.7.0 Compiling serde_yml v0.0.11 Checking fs2 v0.4.3 Checking shell-words v1.1.0 Checking fs_at v0.2.1 Checking unescape v0.1.0 Compiling radicle-surf v0.22.1 Checking siphasher v1.0.1 Checking arc-swap v1.7.1 Checking libyml v0.0.4 Checking crossbeam-channel v0.5.13 Checking remove_dir_all v0.8.3 Checking state v0.5.3 Checking uuid v1.10.0 Checking cyphergraphy v0.3.0 Checking slog-scope v4.4.0 Checking cypheraddr v0.4.0 Compiling serde_derive v1.0.210 Compiling thiserror-impl v1.0.63 Compiling zerocopy-derive v0.7.35 Compiling clap_derive v4.5.13 Compiling git-testament-derive v0.2.0 Compiling tracing-attributes v0.1.27 Checking socks5-client v0.4.1 Compiling culpa-macros v1.0.2 Checking cyphernet v0.5.2 Checking html-page v0.4.0 Compiling ctor v0.2.8 Compiling git-testament v0.2.5 Compiling zerocopy v0.7.35 Compiling pest v2.7.12 Compiling git-ref-format-core v0.3.1 Checking radicle-ssh v0.9.0 Compiling tracing v0.1.40 Compiling culpa v1.0.2 Compiling subplotlib-derive v0.11.0 Compiling git-ref-format-macro v0.3.1 Compiling ppv-lite86 v0.2.20 Compiling clap v4.5.17 Compiling rand_chacha v0.3.1 Compiling hashlink v0.8.4 Compiling hashlink v0.9.1 Compiling pest_meta v2.7.12 Compiling yaml-rust2 v0.8.1 Compiling tempfile-fast v0.3.4 Compiling pest_generator v2.7.12 Compiling pest_derive v2.7.12 Checking url v2.5.2 Checking nonempty v0.9.0 Checking localtime v1.3.1 Checking git-ref-format v0.3.1 Compiling serde_path_to_error v0.1.16 Compiling marked-yaml v0.7.1 Checking slog-json v2.6.1 Compiling roadmap v0.6.1 Compiling tera v1.20.0 Checking git2 v0.19.0 Checking radicle-git-ext v0.8.1 Compiling subplot-build v0.11.0 Compiling subplotlib v0.11.0 Compiling radicle-ci-broker v0.6.3 (/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src) Checking sqlite3-sys v0.15.2 Checking sqlite v0.32.0 Checking radicle-crypto v0.11.0 Checking radicle-cob v0.12.0 Checking radicle v0.13.0 Finished `dev` profile [unoptimized + debuginfo] target(s) in 20.10s + cargo build --all-targets --workspace Compiling cfg-if v1.0.0 Compiling bitflags v2.6.0 Compiling memchr v2.7.4 Compiling once_cell v1.20.0 Compiling log v0.4.22 Compiling itoa v1.0.11 Compiling subtle v2.6.1 Compiling typenum v1.17.0 Compiling libc v0.2.158 Compiling regex-syntax v0.8.4 Compiling fastrand v2.1.1 Compiling percent-encoding v2.3.1 Compiling serde v1.0.210 Compiling thiserror v1.0.63 Compiling utf8parse v0.2.2 Compiling crossbeam-utils v0.8.20 Compiling cpufeatures v0.2.14 Compiling anstyle-parse v0.2.5 Compiling colorchoice v1.0.2 Compiling anstyle-query v1.1.1 Compiling ryu v1.0.18 Compiling rustix v0.38.37 Compiling is_terminal_polyfill v1.70.1 Compiling anstyle v1.0.8 Compiling ahash v0.8.11 Compiling anyhow v1.0.89 Compiling powerfmt v0.2.0 Compiling time-core v0.1.2 Compiling num-conv v0.1.0 Compiling getrandom v0.2.15 Compiling clap_lex v0.7.2 Compiling strsim v0.11.1 Compiling encoding_rs v0.8.34 Compiling anstream v0.6.15 Compiling hashbrown v0.14.5 Compiling time-macros v0.2.18 Compiling deranged v0.3.11 Compiling rand_core v0.6.4 Compiling aho-corasick v1.1.3 Compiling bstr v1.10.0 Compiling pest v2.7.12 Compiling generic-array v0.14.7 Compiling crossbeam-epoch v0.9.18 Compiling rand_chacha v0.3.1 Compiling tinyvec_macros v0.1.1 Compiling tinyvec v1.8.0 Compiling hashlink v0.8.4 Compiling crossbeam-deque v0.8.5 Compiling hashlink v0.9.1 Compiling rand v0.8.5 Compiling clap_builder v4.5.17 Compiling lazy_static v1.5.0 Compiling crypto-common v0.1.6 Compiling block-padding v0.3.3 Compiling block-buffer v0.10.4 Compiling inout v0.1.3 Compiling universal-hash v0.5.1 Compiling digest v0.10.7 Compiling utf8-width v0.1.7 Compiling signature v1.6.4 Compiling cipher v0.4.4 Compiling opaque-debug v0.3.1 Compiling html-escape v0.2.13 Compiling ed25519 v1.5.3 Compiling subplot v0.11.0 Compiling ascii v1.1.0 Compiling yaml-rust2 v0.8.1 Compiling unicode-normalization v0.1.23 Compiling ct-codecs v1.1.2 Compiling linux-raw-sys v0.4.14 Compiling amplify_num v0.5.3 Compiling tempfile v3.12.0 Compiling unicode-bidi v0.3.15 Compiling regex-automata v0.4.7 Compiling pest_meta v2.7.12 Compiling time v0.3.36 Compiling tempfile-fast v0.3.4 Compiling ec25519 v0.1.0 Compiling idna v0.5.0 Compiling sha2 v0.10.8 Compiling pulldown-cmark v0.12.1 Compiling polyval v0.6.2 Compiling libz-sys v1.1.20 Compiling tracing-core v0.1.32 Compiling form_urlencoded v1.2.1 Compiling git-ref-format-core v0.3.1 Compiling pest_generator v2.7.12 Compiling keccak v0.1.5 Compiling base64ct v1.6.0 Compiling serde_path_to_error v0.1.16 Compiling serde_json v1.0.128 Compiling byteorder v1.5.0 Compiling base64 v0.22.1 Compiling git-ref-format-macro v0.3.1 Compiling pem-rfc7468 v0.7.0 Compiling sha3 v0.10.8 Compiling marked-yaml v0.7.1 Compiling clap v4.5.17 Compiling amplify v4.7.0 Compiling tracing v0.1.40 Compiling url v2.5.2 Compiling git-testament-derive v0.2.0 Compiling libgit2-sys v0.17.0+1.8.1 Compiling roadmap v0.6.1 Compiling cyphergraphy v0.3.0 Compiling ghash v0.5.1 Compiling ctr v0.9.2 Compiling aes v0.8.4 Compiling aead v0.5.2 Compiling equivalent v1.0.1 Compiling base32 v0.4.0 Compiling git-ref-format v0.3.1 Compiling regex v1.10.6 Compiling globset v0.4.15 Compiling sqlite3-src v0.5.1 Compiling pest_derive v2.7.12 Compiling cypheraddr v0.4.0 Compiling blowfish v0.9.1 Compiling git2 v0.19.0 Compiling ssh-encoding v0.2.0 Compiling chacha20 v0.9.1 Compiling cbc v0.1.2 Compiling pbkdf2 v0.12.2 Compiling aes-gcm v0.10.3 Compiling poly1305 v0.8.0 Compiling ignore v0.4.23 Compiling env_filter v0.1.2 Compiling data-encoding v2.6.0 Compiling zeroize v1.8.1 Compiling env_logger v0.11.5 Compiling indexmap v2.5.0 Compiling radicle-std-ext v0.1.0 Compiling ssh-cipher v0.2.0 Compiling git-testament v0.2.5 Compiling bcrypt-pbkdf v0.10.0 Compiling socks5-client v0.4.1 Compiling sqlite3-sys v0.15.2 Compiling data-encoding-macro v0.1.15 Compiling xattr v1.3.1 Compiling filetime v0.2.25 Compiling crc32fast v1.4.2 Compiling base-x v0.2.11 Compiling signature v2.2.0 Compiling cyphernet v0.5.2 Compiling flate2 v1.0.33 Compiling multibase v0.9.1 Compiling ssh-key v0.6.6 Compiling tar v0.4.41 Compiling nix v0.29.0 Compiling sqlite v0.32.0 Compiling radicle-ssh v0.9.0 Compiling globwalk v0.9.1 Compiling nonempty v0.9.0 Compiling tera v1.20.0 Compiling qcheck v1.0.0 Compiling cvt v0.1.2 Compiling culpa v1.0.2 Compiling slog v2.7.0 Compiling terminal_size v0.3.0 Compiling radicle-dag v0.9.0 Compiling normpath v1.3.0 Compiling base64 v0.21.7 Compiling subplotlib-derive v0.11.0 Compiling localtime v1.3.1 Compiling fs2 v0.4.3 Compiling crossbeam-channel v0.5.13 Compiling radicle-surf v0.22.1 Compiling state v0.5.3 Compiling fs_at v0.2.1 Compiling siphasher v1.0.1 Compiling unescape v0.1.0 Compiling shell-words v1.1.0 Compiling remove_dir_all v0.8.3 Compiling arc-swap v1.7.1 Compiling libyml v0.0.4 Compiling html-page v0.4.0 Compiling uuid v1.10.0 Compiling slog-scope v4.4.0 Compiling radicle-git-ext v0.8.1 Compiling slog-json v2.6.1 Compiling serde_yml v0.0.11 Compiling radicle-crypto v0.11.0 Compiling radicle-cob v0.12.0 Compiling radicle v0.13.0 Compiling subplot-build v0.11.0 Compiling subplotlib v0.11.0 Compiling radicle-ci-broker v0.6.3 (/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src) Finished `dev` profile [unoptimized + debuginfo] target(s) in 16.74s + cargo doc --workspace Checking unicode-ident v1.0.13 Documenting unicode-ident v1.0.13 Documenting cfg-if v1.0.0 Documenting typenum v1.17.0 Documenting libc v0.2.158 Documenting subtle v2.6.1 Documenting bitflags v2.6.0 Documenting cpufeatures v0.2.14 Documenting tinyvec_macros v0.1.1 Documenting opaque-debug v0.3.1 Documenting memchr v2.7.4 Documenting ed25519 v1.5.3 Documenting percent-encoding v2.3.1 Documenting ascii v1.1.0 Documenting linux-raw-sys v0.4.14 Documenting unicode-bidi v0.3.15 Checking proc-macro2 v1.0.86 Documenting ct-codecs v1.1.2 Documenting amplify_num v0.5.3 Documenting tinyvec v1.8.0 Documenting log v0.4.22 Documenting proc-macro2 v1.0.86 Checking git-ref-format-core v0.3.1 Checking quote v1.0.37 Documenting form_urlencoded v1.2.1 Documenting byteorder v1.5.0 Documenting keccak v0.1.5 Checking syn v2.0.77 Checking syn v1.0.109 Documenting itoa v1.0.11 Documenting fastrand v2.1.1 Documenting base64ct v1.6.0 Documenting equivalent v1.0.1 Checking data-encoding v2.6.0 Documenting base32 v0.4.0 Documenting rustix v0.38.37 Documenting unicode-normalization v0.1.23 Documenting hashbrown v0.14.5 Documenting sqlite3-src v0.5.1 Documenting quote v1.0.37 Documenting data-encoding v2.6.0 Documenting zeroize v1.8.1 Documenting radicle-std-ext v0.1.0 Documenting getrandom v0.2.15 Checking amplify_syn v2.0.1 Checking proc-macro-error v1.0.4 Documenting libz-sys v1.1.20 Documenting data-encoding-macro-internal v0.1.13 Documenting once_cell v1.20.0 Documenting ryu v1.0.18 Documenting pem-rfc7468 v0.7.0 Documenting sqlite3-sys v0.15.2 Documenting utf8parse v0.2.2 Documenting signature v2.2.0 Documenting serde_derive v1.0.210 Documenting amplify_syn v2.0.1 Documenting thiserror-impl v1.0.63 Documenting proc-macro-error-attr v1.0.4 Documenting generic-array v0.14.7 Documenting ec25519 v0.1.0 Documenting idna v0.5.0 Documenting libgit2-sys v0.17.0+1.8.1 Documenting rand_core v0.6.4 Documenting indexmap v2.5.0 Documenting data-encoding-macro v0.1.15 Documenting powerfmt v0.2.0 Documenting base-x v0.2.11 Documenting tempfile v3.12.0 Documenting sqlite v0.32.0 Documenting anstyle-parse v0.2.5 Documenting proc-macro-error v1.0.4 Documenting rand v0.8.5 Documenting nix v0.29.0 Documenting crypto-common v0.1.6 Documenting block-padding v0.3.3 Documenting block-buffer v0.10.4 Documenting thiserror v1.0.63 Documenting amplify_derive v4.0.1 Documenting multibase v0.9.1 Documenting deranged v0.3.11 Documenting aho-corasick v1.1.3 Documenting cvt v0.1.2 Documenting time-macros v0.2.18 Documenting time-core v0.1.2 Documenting num-conv v0.1.0 Documenting inout v0.1.3 Documenting git-ref-format-macro v0.3.1 Documenting serde v1.0.210 Documenting regex-syntax v0.8.4 Documenting radicle-ssh v0.9.0 Documenting qcheck v1.0.0 Documenting digest v0.10.7 Documenting universal-hash v0.5.1 Documenting aead v0.5.2 Documenting is_terminal_polyfill v1.70.1 Documenting anstyle v1.0.8 Documenting amplify v4.7.0 Documenting cipher v0.4.4 Documenting colorchoice v1.0.2 Documenting anstyle-query v1.1.1 Documenting fs_at v0.2.1 Documenting terminal_size v0.3.0 Documenting culpa-macros v1.0.2 Documenting time v0.3.36 Documenting radicle-dag v0.9.0 Compiling radicle-ci-broker v0.6.3 (/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src) Documenting slog v2.7.0 Documenting crossbeam-utils v0.8.20 Documenting normpath v1.3.0 Documenting polyval v0.6.2 Documenting poly1305 v0.8.0 Documenting anstream v0.6.15 Documenting sha2 v0.10.8 Documenting sha3 v0.10.8 Documenting pbkdf2 v0.12.2 Documenting cyphergraphy v0.3.0 Documenting lazy_static v1.5.0 Checking heck v0.5.0 Documenting regex-automata v0.4.7 Documenting utf8-width v0.1.7 Documenting heck v0.5.0 Documenting ctr v0.9.2 Documenting aes v0.8.4 Documenting cbc v0.1.2 Documenting chacha20 v0.9.1 Documenting ghash v0.5.1 Documenting blowfish v0.9.1 Documenting clap_lex v0.7.2 Documenting url v2.5.2 Documenting git-ref-format-core v0.3.1 Documenting serde_json v1.0.128 Documenting ssh-encoding v0.2.0 Documenting cypheraddr v0.4.0 Documenting nonempty v0.9.0 Documenting strsim v0.11.1 Documenting clap_derive v4.5.13 Documenting html-escape v0.2.13 Documenting localtime v1.3.1 Documenting remove_dir_all v0.8.3 Documenting crossbeam-channel v0.5.13 Documenting aes-gcm v0.10.3 Documenting bcrypt-pbkdf v0.10.0 Documenting culpa v1.0.2 Documenting git2 v0.19.0 Documenting subplotlib-derive v0.11.0 Documenting git-ref-format v0.3.1 Documenting clap_builder v4.5.17 Documenting socks5-client v0.4.1 Documenting filetime v0.2.25 Documenting fs2 v0.4.3 Documenting libyml v0.0.4 Documenting siphasher v1.0.1 Documenting arc-swap v1.7.1 Documenting state v0.5.3 Documenting ssh-cipher v0.2.0 Documenting regex v1.10.6 Documenting unescape v0.1.0 Documenting shell-words v1.1.0 Documenting base64 v0.22.1 Documenting slog-json v2.6.1 Documenting html-page v0.4.0 Documenting uuid v1.10.0 Documenting anyhow v1.0.89 Documenting cyphernet v0.5.2 Documenting slog-scope v4.4.0 Documenting serde_yml v0.0.11 Documenting ssh-key v0.6.6 Documenting clap v4.5.17 Documenting subplotlib v0.11.0 Documenting radicle-git-ext v0.8.1 Documenting radicle-crypto v0.11.0 Documenting radicle-surf v0.22.1 Documenting radicle-cob v0.12.0 Documenting radicle v0.13.0 Documenting radicle-ci-broker v0.6.3 (/srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src) warning: unresolved link to `Requestbuilder` --> src/msg.rs:836:36 | 836 | /// CI event was not set for [`Requestbuilder`]. | ^^^^^^^^^^^^^^ no item named `Requestbuilder` in scope | = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default warning: `radicle-ci-broker` (lib doc) generated 1 warning Finished `dev` profile [unoptimized + debuginfo] target(s) in 33.66s Generated /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/doc/radicle_ci_broker/index.html and 3 other files + cargo test --workspace --no-fail-fast Finished `test` profile [unoptimized + debuginfo] target(s) in 0.11s Running unittests src/lib.rs (target/debug/deps/radicle_ci_broker-22f2b34d6582ea7a) running 64 tests {"msg":"broker database: /tmp/.tmp1xypDW/db.db","level":"INFO","ts":"2024-10-11T06:00:42.049887872Z"} {"msg":"broker database: /tmp/.tmpRecorP/db.db","level":"INFO","ts":"2024-10-11T06:00:42.049995202Z"} {"msg":"broker database: /tmp/.tmpsVeURh/db.db","level":"INFO","ts":"2024-10-11T06:00:42.050055142Z"} {"msg":"broker database: /tmp/.tmpkQnTUy/db.db","level":"INFO","ts":"2024-10-11T06:00:42.050102982Z"} test broker::test::adds_adapter ... ok {"msg":"broker database: /tmp/.tmp12yOrx/db.db","level":"INFO","ts":"2024-10-11T06:00:42.250285248Z"} test broker::test::does_not_find_unknown_repo ... ok {"msg"test broker::test::does_not_have_a_default_adapter_initially ... :ok" broker database: /tmp/.tmpQzrDhF/db.db","level":"INFO","ts":"2024-10-11T06:00:42.258198185Z"} {"msg":"broker database: /tmp/.tmpfAG4zE/db.db","level":"INFO","ts":"2024-10-11T06:00:42.258370095Z"} {"msg":"adapter exit code","level":"DEBG","ts":"2024-10-11T06:00:42.293121439Z","exit_code":0} test adapter::test::adapter_reports_failure ... ok {"msg":"broker database: /tmp/.tmpoNnZ0A/db.db","level":"INFO","ts":"2024-10-11T06:00:42.29370523Z"} test adapter::test::adapter_is_not_executable ... ok {"msg":"start CI run","level":"INFO","ts":"2024-10-11T06:00:42.358923499Z"} {"msg":"trigger event: Trigger {\n common: EventCommonFields {\n version: 1,\n event_type: Push,\n repository: Repository {\n id: RepoId(rad:z4CiAKfGDoweMxG9xJagz6LfH9pyW),\n name: \"acme\",\n description: \"Acme's repository\",\n private: false,\n default_branch: \"master\",\n delegates: [\n Did(\"did:key:z6MkukN8c6z2bqSDMnQs29QyoLhCDRjxKTNxsKm1AmGfkxaw\"),\n ],\n },\n },\n push: Some(\n PushEvent {\n pusher: Author {\n id: Did(\"did:key:z6MkukN8c6z2bqSDMnQs29QyoLhCDRjxKTNxsKm1AmGfkxaw\"),\n alias: None,\n },\n before: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n after: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n branch: \"master\",\n commits: [\n Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n ],\n },\n ),\n patch: None,\n}","level":"DEBG","ts":"2024-10-11T06:00:42.359132139Z"} test adapter::test::adapter_has_bad_interpreter ... ok {"msg":"adapter exit code","level":"DEBG","ts":"2024-10-11T06:00:42.360357892Z","exit_code":0} test adapter::test::adapter_reports_success ... ok {"msg":"no first response message","level":"ERRO"test ci_event::test::branch_deleted ... ok ,"ts":"2024-10-11T06:00:42.361155224Z"} test ci_event::test::branch_created ... {ok" msg":"no second response message","level":"ERRO","ts":"2024-10-11T06:00:42.361197204Z"} {"msg":"adapter was terminated by signal","level":"DEBG","tstest ci_event::test::nothing_updated ... "ok: "2024-10-11T06:00:42.361227194Z"} {"msg":"adapter did not exit voluntarily","level":"WARN","ts":"2024-10-11T06:00:42.361254554Z"} test adapter::test::adapter_is_killed_before_any_messages ... ok test ci_event::test::skipped ... ok {"msg":"too many response messages","level":"ERRO","ts":"2024-10-11T06:00:42.362549947Z"} test ci_event::test::patch_updated ... ok test ci_event::test_namespaced_branch::empty ... ok test adapter::test::adapter_outputs_too_many_messages ... ok test ci_event::test::patch_created ... ok test ci_event::test_namespaced_branch::has_namespace_with_path ... ok test ci_event::test_namespaced_branch::lacks_namespace ... ok test ci_event::test_patch_id::empty ... ok test ci_event::test::branch_updated ... ok {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364458251Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364515971Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364608991Z"} test ci_event::test_namespaced_branch::has_namespace ... ok {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364670221Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364706501Z"} {"msg"test filter::test::allows_all_for_default_repository ... :ok" EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364752992Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364809072Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364847482Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364886672Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364920532Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364955472Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.364990132Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365020482Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365069752Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365116072Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBGtest filter::test::allows_all_for_main_branch ... "ok ,"ts":"2024-10-11T06:00:42.365155182Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365198483Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365233053Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365270513Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365303583Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365336393Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level"test filter::test::allows_branch_creation ... :ok" DEBG","ts":"2024-10-11T06:00:42.365378923Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level"test adapter::test::adapter_does_not_exist ... :ok" DEBG","ts":"2024-10-11T06:00:42.365447643Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })test filter::test::allows_any_event ... "ok, "level":"DEBG","ts":"2024-10-11T06:00:42.365501533Z"} test ci_event::test_patch_id::has_namespace_with_path ... ok {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365567023Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test ci_event::test_patch_id::lacks_namespace ... ok ,"ts":"2024-10-11T06:00:42.365616533Z"} test filter::test::allows_branch_deletion ... ok {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365669964Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365721694Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365766454Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"test filter::test::allows_branch_update ... ), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })ok" ,"level":"DEBG","ts":"2024-10-11T06:00:42.365809384Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(test ci_event::test_patch_id::has_namespace ... \"mainok\" ), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365856164Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365904684Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.365957824Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366002914Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366038954Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366080334Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366119765Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366160355Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366220185Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366266445Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366300895Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366340185Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"test filter::test::allows_patch_creation ... DEBG"ok ,"ts":"2024-10-11T06:00:42.366382645Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test filter::test::allows_patch_update ... ok ,"ts":"2024-10-11T06:00:42.366434335Z"} {"msg":"EventFilter::allows: event=V1(Shutdown)","level":"DEBG","ts":"2024-10-11T06:00:42.366472825Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"test filter::test::allows_shutdown ... ok ), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366519385Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366566136Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366617906Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366672776Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366716716Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366757636Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366805576Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366848196Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366891536Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366941146Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.366977926Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367011947Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367054147Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367097127Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367142947Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367194427Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367231537Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367269857Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367318737Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367356997Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367404617Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367448047Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367482348Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })test filter::test::allows_specific_patch ... "ok ,"level":"DEBG","ts":"2024-10-11T06:00:42.367524148Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367574998Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367620998Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367671418Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367715208Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367758578Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367808418Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367857718Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367911218Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.367964099Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368010769Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368051409Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"other\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368091429Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368140939Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368189659Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368235909Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test adapter::test::adapter_produces_as_bad_message ... ok ,"ts":"2024-10-11T06:00:42.368279979Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"test filter::test::allows_no_event ... 2024-10-11T06:00:42.368321999Z"ok} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368363359Z"} {"msg":"no second response message","level":"ERRO","ts":"2024-10-11T06:00:42.36840759Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36845904Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36851276Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.3685599Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36860381Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(bde68ac76ce093bcc583aa612f45e13fee2353a0)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36864242Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36868284Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36872537Z"} {"msg":"adapter was terminated by signal","level":"DEBG","ts":"2024-10-11T06:00:42.36876736Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36880896Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.36885665Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368902091Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368938701Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(bde68ac76ce093bcc583aa612f45e13fee2353a0)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.368972831Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369015281Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369057811Z"} {"msg":"adapter did not exit voluntarily","level":"WARN","ts":"2024-10-11T06:00:42.369099101Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369138281Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369181411Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369225251Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369262041Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(bde68ac76ce093bcc583aa612f45e13fee2353a0)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369297891Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369332591Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","test adapter::test::adapter_is_killed_after_first_message ... levelok" :"DEBG","ts":"2024-10-11T06:00:42.369369412Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG",test filter::test::doesnt_allow_any_for_other_branch ... "tsok" :"2024-10-11T06:00:42.369408562Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369451892Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369493102Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369536242Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(bde68ac76ce093bcc583aa612f45e13fee2353a0)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369579082Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(test filter::test::doesnt_allows_other_patch ... \"ok main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369627662Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369671242Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","test adapter::test::adapter_first_message_isnt_triggered ... ts"ok: "2024-10-11T06:00:42.369713502Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369759182Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369797312Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369833412Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369878113Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369923863Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369964253Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.369998723Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370038013Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370078033Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370111643Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370150153Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370187833Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370229913Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370271563Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370311453Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370348143Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370388864Z"} {"msg":"EventFilter::allows: event=V1(BranchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370426934Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370458364Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370495694Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370532624Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370565584Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370598844Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370633364Z"} {"msg":"adapter exit code","level":"DEBG","ts":"2024-10-11T06:00:42.370672134Z","exit_code":1} {"msg":"adapter stderr","level":"DEBG","ts":"2024-10-11T06:00:42.370712694Z","stderr":"woe be me"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370756594Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370795524Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370826014Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370861804Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370905645Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level"test adapter::test::adapter_exits_nonzero ... :"okDEBG ","ts":"2024-10-11T06:00:42.370945435Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.370980715Z"} {test msg::test_push_branch::get_no_push_branch ... "okmsg ":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371020415Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:zwTxygwuz5LDGBq255RA2CbNGrz8), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test msg::test_push_branch::get_push_branch ... ,ok" ts":"2024-10-11T06:00:42.371057665Z"} {test filter::test::only_allows_branch_creation ... ok "msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test filter::test::doesnt_allow_any_for_other_repository ... ,ok" ts":"2024-10-11T06:00:42.371097615Z"} {"msg":"EventFilter::allows: event=V1(BranchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4), old_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371137915Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371170985Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371206145Z"} {"msg":"adapter was terminated by signal","level":"DEBG","ts":"2024-10-11T06:00:42.371243045Z"} {"msg":"adapter did not exit voluntarily","level":"WARN","ts":"2024-10-11T06:00:42.371277105Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371306695Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371337725Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371380735Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371423086Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371452326Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371492386Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test adapter::test::adapter_is_killed_after_second_message ... ok ,"ts":"2024-10-11T06:00:42.371546116Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371589756Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371638036Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371681646Z"} {"msg":"EventFilter::allows: event=V1(BranchDeleted { repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), branch: RefString(\"main\"), tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371717276Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371754876Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371790456Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371829976Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"test filter::test::allows_opposite ... 2024-10-11T06:00:42.371868636Zok" } {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.371904637Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })",test run::test::serialize_run_state ... "oklevel ":"DEBG","ts":"2024-10-11T06:00:42.371942147Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"test filter::test::only_allows_branch_deletion ... 2024-10-11T06:00:42.371972957Zok" } {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372008627Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"test filter::test::only_allows_branch_update ... DEBGok" ,"ts":"2024-10-11T06:00:42.372050297Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372081937Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372117947Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG"test filter::test::only_allows_patch_creation ... ok ,"ts":"2024-10-11T06:00:42.372151487Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","test filter::test::only_allows_patch_update ... tsok" :"2024-10-11T06:00:42.372181187Z"} {"msg":"EventFilter::allows: event=V1(PatchCreated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372218727Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372250867Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372280517Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372311307Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372341067Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372372287Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372402208Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372435878Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372466528Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372502468Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372534348Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","ts":"2024-10-11T06:00:42.372565598Z"} {"msg":"EventFilter::allows: event=V1(PatchUpdated { from_node: PublicKey(z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV), repo: RepoId(rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5), patch: ObjectId(Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4)), new_tip: Oid(ff3099ba5de28d954c41d0b5a84316f943794ea4) })","level":"DEBG","test filter::test::allows_if_all_allow ... tsok": "2024-10-11T06:00:42.372595288Z"} test filter::test::allows_if_any_allows ... ok test msg::trigger_from_ci_event_tests::trigger_push_from_branch_created ... ok test msg::trigger_from_ci_event_tests::trigger_push_from_branch_updated ... ok test msg::trigger_from_ci_event_tests::trigger_patch_from_patch_updated ... ok test msg::trigger_from_ci_event_tests::trigger_patch_from_patch_created ... ok test broker::test::has_no_adapters_initially ... ok test broker::test::finds_default_adapter_for_unknown_repo ... ok {"msg":"adapter exit code","level":"DEBG","ts":"2024-10-11T06:00:42.525807524Z","exit_code":1} {"msg":"adapter stderr","level":"DEBG","ts":"2024-10-11T06:00:42.525860744Z","stderr":"woe be me"} {"msg":"start CI run","level":"INFO","ts":"2024-10-11T06:00:42.544621604Z"} {"msg":"trigger event: Trigger {\n common: EventCommonFields {\n version: 1,\n event_type: Push,\n repository: Repository {\n id: RepoId(rad:zJcnXQJVssP3ybg5EWYaWoHVXUKZ),\n name: \"acme\",\n description: \"Acme's repository\",\n private: false,\n default_branch: \"master\",\n delegates: [\n Did(\"did:key:z6Mkv4cSGt9ouW8c7tzVSM7HhoPLmhCxPYcYttcxuvEJjNUJ\"),\n ],\n },\n },\n push: Some(\n PushEvent {\n pusher: Author {\n id: Did(\"did:key:z6Mkv4cSGt9ouW8c7tzVSM7HhoPLmhCxPYcYttcxuvEJjNUJ\"),\n alias: None,\n },\n before: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n after: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n branch: \"master\",\n commits: [\n Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n ],\n },\n ),\n patch: None,\n}","level":"DEBG","ts":"2024-10-11T06:00:42.544771064Z"} test broker::test::sets_a_default_adapter_initially ... ok {"msg":"failed to run adapter or it failed to run CI: child process failed with wait status 1","level":"ERRO","ts":"2024-10-11T06:00:42.587291735Z"} {"msg":"Finish CI run","level":"INFO","ts":"2024-10-11T06:00:42.587336145Z"} {"msg":"finished CI run: Run {\n broker_run_id: RunId {\n id: \"8491f13b-c2b5-4b98-8440-19c769f0606b\",\n },\n adapter_run_id: Some(\n RunId {\n id: \"xyzzy\",\n },\n ),\n adapter_info_url: None,\n repo_id: RepoId(rad:z4CiAKfGDoweMxG9xJagz6LfH9pyW),\n repo_name: \"acme\",\n timestamp: \"2024-10-11 06:00:42Z\",\n whence: Branch {\n name: \"push-event-has-no-branch-name\",\n commit: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n who: Some(\n \"did:key:z6MkukN8c6z2bqSDMnQs29QyoLhCDRjxKTNxsKm1AmGfkxaw\",\n ),\n },\n state: Finished,\n result: Some(\n Success,\n ),\n}","level":"DEBG","ts":"2024-10-11T06:00:42.587466005Z"} test broker::test::adapter_fails ... ok {"msg":"adapter exit code","level":"DEBG","ts":"2024-10-11T06:00:42.648220184Z","exit_code":0} {"msg":"Finish CI run","level":"INFO","ts":"2024-10-11T06:00:42.685193883Z"} {"msg":"finished CI run: Run {\n broker_run_id: RunId {\n id: \"029583ba-e239-420a-a7c0-f469db4298c7\",\n },\n adapter_run_id: Some(\n RunId {\n id: \"xyzzy\",\n },\n ),\n adapter_info_url: None,\n repo_id: RepoId(rad:zJcnXQJVssP3ybg5EWYaWoHVXUKZ),\n repo_name: \"acme\",\n timestamp: \"2024-10-11 06:00:42Z\",\n whence: Branch {\n name: \"push-event-has-no-branch-name\",\n commit: Oid(\n 532c92e4ec973d79c25652c581ae82d238e46a06,\n ),\n who: Some(\n \"did:key:z6Mkv4cSGt9ouW8c7tzVSM7HhoPLmhCxPYcYttcxuvEJjNUJ\",\n ),\n },\n state: Finished,\n result: Some(\n Success,\n ),\n}","level":"DEBG","ts":"2024-10-11T06:00:42.685386933Z"} test broker::test::executes_adapter ... ok test result: ok. 64 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.64s Running unittests src/bin/cib.rs (target/debug/deps/cib-e5ef2dce4f549f93) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running unittests src/bin/cibtool.rs (target/debug/deps/cibtool-cd3b98f2d207499f) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running unittests src/bin/synthetic-events.rs (target/debug/deps/synthetic_events-b2fdc3bad4d4e685) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running tests/subplot.rs (target/debug/deps/subplot-7179c89003a8b7e7) running 37 tests test adapter_with_url_runs_successfully ... ok test acceptance_criteria_for_upgrades ... FAILED test add_information_about_triggered_run_to_database ... FAILED test add_information_about_run_that_s_finished_successfully_to_database ... FAILED test dummy_adapter_runs_successfully ... ok test allows_setting_minimum_log_level ... FAILED test convert_recorded_node_events_into_ci_events ... FAILED test can_trigger_a_ci_run ... FAILED test don_t_insert_event_for_non_existent_repository ... FAILED test don_t_insert_events_into_queue_when_not_allowed_by_filter ... FAILED test adapter_can_provide_url_for_info_on_run ... FAILED test events_can_be_queued_and_removed_from_queue ... FAILED test filter_recorded_ci_events ... FAILED test gives_helpful_error_message_if_it_doesn_t_understand_its_configuration_file ... FAILED test logs_start_and_successful_end ... FAILED test insert_many_events_into_queue ... FAILED test gives_helpful_error_message_if_node_socket_can_t_be_found ... FAILED test logs_adapter_stderr_output ... FAILED test insert_events_into_queue ... FAILED test process_queued_events ... FAILED test produces_a_json_status_file ... FAILED test produces_a_report_page_upon_request ... FAILED test record_node_events ... FAILED test reports_it_version ... FAILED test shuts_down_when_requested ... FAILED test stops_if_the_node_connection_breaks ... FAILED test we_can_run_rad ... FAILED test smoke_test__runs_adapter ... FAILED test update_and_show_information_about_run_to_running ... FAILED test shows_config_as_json ... ok test add_information_about_run_that_s_running_to_database ... FAILED test add_information_about_run_that_s_finished_in_failure_to_database ... FAILED test logs_termination_due_to_error ... FAILED test can_add_shutdown_event_to_queue ... ok test event_synthesizer_terminates_after_first_connection ... ok test count_in_a_single_process has been running for over 60 seconds test count_in_concurrent_processes has been running for over 60 seconds test count_in_a_single_process ... ok test count_in_concurrent_processes ... ok failures: ---- acceptance_criteria_for_upgrades stdout ---- unknown: scenario: Acceptance criteria for upgrades ci-broker.md:1400:1: step: given file radenv.sh ci-broker.md:1401:1: step: given file setup-node.sh ci-broker.md:1402:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot3zkUUAcceptance-criteria-for-upgrades ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot3zkUUAcceptance-criteria-for-upgrades/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'acceptance_criteria_for_upgrades' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:5492:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ---- add_information_about_triggered_run_to_database stdout ---- unknown: scenario: Add information about triggered run to database ci-broker.md:978:1: step: given file radenv.sh ci-broker.md:979:1: step: given file setup-node.sh ci-broker.md:980:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot6uboIAdd-information-about-triggered-run-to-database ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot6uboIAdd-information-about-triggered-run-to-database/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'add_information_about_triggered_run_to_database' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3395:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- add_information_about_run_that_s_finished_successfully_to_database stdout ---- unknown: scenario: Add information about run that's finished successfully to database ci-broker.md:1026:1: step: given file radenv.sh ci-broker.md:1027:1: step: given file setup-node.sh ci-broker.md:1028:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotZjjrPAdd-information-about-run-that-s-finished-successfully-to-database ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotZjjrPAdd-information-about-run-that-s-finished-successfully-to-database/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'add_information_about_run_that_s_finished_successfully_to_database' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3672:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- allows_setting_minimum_log_level stdout ---- unknown: scenario: Allows setting minimum log level ci-broker.md:524:1: step: given file radenv.sh ci-broker.md:525:1: step: given file setup-node.sh ci-broker.md:526:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotByPrnAllows-setting-minimum-log-level ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotByPrnAllows-setting-minimum-log-level/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'allows_setting_minimum_log_level' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1765:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- convert_recorded_node_events_into_ci_events stdout ---- unknown: scenario: Convert recorded node events into CI events ci-broker.md:1190:1: step: given file radenv.sh ci-broker.md:1191:1: step: given file setup-node.sh ci-broker.md:1192:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot6GDuWConvert-recorded-node-events-into-CI-events ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot6GDuWConvert-recorded-node-events-into-CI-events/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'convert_recorded_node_events_into_ci_events' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:4699:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- can_trigger_a_ci_run stdout ---- unknown: scenario: Can trigger a CI run ci-broker.md:956:1: step: given file radenv.sh ci-broker.md:957:1: step: given file setup-node.sh ci-broker.md:958:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotHl7SYCan-trigger-a-CI-run ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotHl7SYCan-trigger-a-CI-run/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'can_trigger_a_ci_run' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3261:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- don_t_insert_event_for_non_existent_repository stdout ---- unknown: scenario: Don't insert event for non-existent repository ci-broker.md:1128:1: step: given file radenv.sh ci-broker.md:1129:1: step: given file setup-node.sh ci-broker.md:1130:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotHmiKkDon-t-insert-event-for-non-existent-repository ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotHmiKkDon-t-insert-event-for-non-existent-repository/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'don_t_insert_event_for_non_existent_repository' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:4355:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- don_t_insert_events_into_queue_when_not_allowed_by_filter stdout ---- unknown: scenario: Don't insert events into queue when not allowed by filter ci-broker.md:742:1: step: given file radenv.sh ci-broker.md:743:1: step: given file setup-node.sh ci-broker.md:744:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot0IaUvDon-t-insert-events-into-queue-when-not-allowed-by-filter ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot0IaUvDon-t-insert-events-into-queue-when-not-allowed-by-filter/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'don_t_insert_events_into_queue_when_not_allowed_by_filter' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:2596:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- adapter_can_provide_url_for_info_on_run stdout ---- unknown: scenario: Adapter can provide URL for info on run ci-broker.md:315:1: step: given file radenv.sh ci-broker.md:316:1: step: given file setup-node.sh ci-broker.md:317:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotXgqKwAdapter-can-provide-URL-for-info-on-run ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotXgqKwAdapter-can-provide-URL-for-info-on-run/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'adapter_can_provide_url_for_info_on_run' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:819:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- events_can_be_queued_and_removed_from_queue stdout ---- unknown: scenario: Events can be queued and removed from queue ci-broker.md:904:1: step: given file radenv.sh ci-broker.md:905:1: step: given file setup-node.sh ci-broker.md:906:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotCFZJ5Events-can-be-queued-and-removed-from-queue ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotCFZJ5Events-can-be-queued-and-removed-from-queue/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'events_can_be_queued_and_removed_from_queue' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3073:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- filter_recorded_ci_events stdout ---- unknown: scenario: Filter recorded CI events ci-broker.md:1218:1: step: given file radenv.sh ci-broker.md:1219:1: step: given file setup-node.sh ci-broker.md:1220:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotwwdMHFilter-recorded-CI-events ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotwwdMHFilter-recorded-CI-events/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'filter_recorded_ci_events' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:4938:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- gives_helpful_error_message_if_it_doesn_t_understand_its_configuration_file stdout ---- unknown: scenario: Gives helpful error message if it doesn't understand its configuration file ci-broker.md:383:1: step: given file radenv.sh ci-broker.md:384:1: step: given file setup-node.sh ci-broker.md:385:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotXOGwhGives-helpful-error-message-if-it-doesn-t-understand-its-configuration-file ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotXOGwhGives-helpful-error-message-if-it-doesn-t-understand-its-configuration-file/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'gives_helpful_error_message_if_it_doesn_t_understand_its_configuration_file' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1054:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- logs_start_and_successful_end stdout ---- unknown: scenario: Logs start and successful end ci-broker.md:1290:1: step: given file radenv.sh ci-broker.md:1291:1: step: given file setup-node.sh ci-broker.md:1292:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot4aJbKLogs-start-and-successful-end ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot4aJbKLogs-start-and-successful-end/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'logs_start_and_successful_end' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:5095:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- insert_many_events_into_queue stdout ---- unknown: scenario: Insert many events into queue ci-broker.md:712:1: step: given file radenv.sh ci-broker.md:713:1: step: given file setup-node.sh ci-broker.md:714:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotI6MGUInsert-many-events-into-queue ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotI6MGUInsert-many-events-into-queue/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'insert_many_events_into_queue' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:2434:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- gives_helpful_error_message_if_node_socket_can_t_be_found stdout ---- unknown: scenario: Gives helpful error message if node socket can't be found ci-broker.md:355:1: step: given file radenv.sh ci-broker.md:356:1: step: given file setup-node.sh ci-broker.md:357:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotwgaPUGives-helpful-error-message-if-node-socket-can-t-be-found ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotwgaPUGives-helpful-error-message-if-node-socket-can-t-be-found/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'gives_helpful_error_message_if_node_socket_can_t_be_found' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:928:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- logs_adapter_stderr_output stdout ---- unknown: scenario: Logs adapter stderr output ci-broker.md:496:1: step: given file radenv.sh ci-broker.md:497:1: step: given file setup-node.sh ci-broker.md:498:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotRYjgzLogs-adapter-stderr-output ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotRYjgzLogs-adapter-stderr-output/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'logs_adapter_stderr_output' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1629:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- insert_events_into_queue stdout ---- unknown: scenario: Insert events into queue ci-broker.md:682:1: step: given file radenv.sh ci-broker.md:683:1: step: given file setup-node.sh ci-broker.md:684:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotPzxreInsert-events-into-queue ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotPzxreInsert-events-into-queue/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'insert_events_into_queue' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:2276:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- process_queued_events stdout ---- unknown: scenario: Process queued events ci-broker.md:776:1: step: given file radenv.sh ci-broker.md:777:1: step: given file setup-node.sh ci-broker.md:778:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotmt3koProcess-queued-events ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotmt3koProcess-queued-events/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'process_queued_events' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:2845:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- produces_a_json_status_file stdout ---- unknown: scenario: Produces a JSON status file ci-broker.md:1347:1: step: given file radenv.sh ci-broker.md:1348:1: step: given file setup-node.sh ci-broker.md:1349:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotD5af9Produces-a-JSON-status-file ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotD5af9Produces-a-JSON-status-file/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'produces_a_json_status_file' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:5296:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- produces_a_report_page_upon_request stdout ---- unknown: scenario: Produces a report page upon request ci-broker.md:468:1: step: given file radenv.sh ci-broker.md:469:1: step: given file setup-node.sh ci-broker.md:470:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotmWyVZProduces-a-report-page-upon-request ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotmWyVZProduces-a-report-page-upon-request/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'produces_a_report_page_upon_request' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1449:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- record_node_events stdout ---- unknown: scenario: Record node events ci-broker.md:1163:1: step: given file radenv.sh ci-broker.md:1164:1: step: given file setup-node.sh ci-broker.md:1165:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotcSLxiRecord-node-events ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotcSLxiRecord-node-events/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'record_node_events' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:4513:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- reports_it_version stdout ---- unknown: scenario: Reports it version ci-broker.md:285:1: step: given file radenv.sh ci-broker.md:286:1: step: given file setup-node.sh ci-broker.md:287:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotFiiEBReports-it-version ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotFiiEBReports-it-version/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'reports_it_version' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:610:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- shuts_down_when_requested stdout ---- unknown: scenario: Shuts down when requested ci-broker.md:442:1: step: given file radenv.sh ci-broker.md:443:1: step: given file setup-node.sh ci-broker.md:444:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotkFlaHShuts-down-when-requested ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotkFlaHShuts-down-when-requested/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'shuts_down_when_requested' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1327:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- stops_if_the_node_connection_breaks stdout ---- unknown: scenario: Stops if the node connection breaks ci-broker.md:413:1: step: given file radenv.sh ci-broker.md:414:1: step: given file setup-node.sh ci-broker.md:415:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot0oi3VStops-if-the-node-connection-breaks ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot0oi3VStops-if-the-node-connection-breaks/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'stops_if_the_node_connection_breaks' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1172:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- we_can_run_rad stdout ---- unknown: scenario: We can run rad ci-broker.md:561:1: step: given file radenv.sh ci-broker.md:562:1: step: when I run bash radenv.sh rad --version Running `bash` with args ["radenv.sh", "rad", "--version"] Running in /tmp/subplot1lm7pWe-can-run-rad ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: env: ‘rad’: No such file or directory return: Failure thread 'we_can_run_rad' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:1813:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- smoke_test__runs_adapter stdout ---- unknown: scenario: Smoke test: Runs adapter ci-broker.md:242:1: step: given file radenv.sh ci-broker.md:243:1: step: given file setup-node.sh ci-broker.md:244:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplotlWxH8Smoke-test--Runs-adapter ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplotlWxH8Smoke-test--Runs-adapter/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'smoke_test__runs_adapter' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:495:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- update_and_show_information_about_run_to_running stdout ---- unknown: scenario: Update and show information about run to running ci-broker.md:1078:1: step: given file radenv.sh ci-broker.md:1079:1: step: given file setup-node.sh ci-broker.md:1080:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot9XK1fUpdate-and-show-information-about-run-to-running ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot9XK1fUpdate-and-show-information-about-run-to-running/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'update_and_show_information_about_run_to_running' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:4182:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- add_information_about_run_that_s_running_to_database stdout ---- unknown: scenario: Add information about run that's running to database ci-broker.md:1001:1: step: given file radenv.sh ci-broker.md:1002:1: step: given file setup-node.sh ci-broker.md:1003:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot9Xgi2Add-information-about-run-that-s-running-to-database ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot9Xgi2Add-information-about-run-that-s-running-to-database/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'add_information_about_run_that_s_running_to_database' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3529:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- add_information_about_run_that_s_finished_in_failure_to_database stdout ---- unknown: scenario: Add information about run that's finished in failure to database ci-broker.md:1051:1: step: given file radenv.sh ci-broker.md:1052:1: step: given file setup-node.sh ci-broker.md:1053:1: step: when I run bash radenv.sh bash setup-node.sh Running `bash` with args ["radenv.sh", "bash", "setup-node.sh"] Running in /tmp/subplot2j9mnAdd-information-about-run-that-s-finished-in-failure-to-database ENV: SHELL = /bin/sh PATH: /home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 127 Stdout: Stderr: + mkdir -p /tmp/subplot2j9mnAdd-information-about-run-that-s-finished-in-failure-to-database/homedir + rad auth --alias brokertest setup-node.sh: line 7: rad: command not found return: Failure thread 'add_information_about_run_that_s_finished_in_failure_to_database' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:3838:20: called `Result::unwrap()` on an `Err` value: "expected exit code 0, but had Some(127)" ---- logs_termination_due_to_error stdout ---- unknown: scenario: Logs termination due to error ci-broker.md:1321:1: step: given an installed cib ci-broker.md:1323:1: step: given file broker.yaml ci-broker.md:1324:1: step: when I try to run cib --config broker.yaml queued Running `cib` with args ["--config", "broker.yaml", "queued"] Running in /tmp/subplotgVAEtLogs-termination-due-to-error ENV: SHELL = /bin/sh PATH: /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug:/home/_rad/.cargo/bin:/bin:/usr/bin:/sbin:/usr/sbin Exit code: 101 Stdout: Stderr: {"msg":"CI broker starts","level":"INFO","ts":"2024-10-11T06:00:42.710657748Z","version":"938f627"} {"msg":"loaded configuration Config {\n default_adapter: \"mcadapterface\",\n adapters: {\n \"mcadapterface\": Adapter { \n command: \"./adapter.sh\", \n env: {\n \"RADICLE_NATIVE_CI\": \"native-ci.yaml\",\n }, \n sensitive_env: {} },\n },\n filters: [\n Branch(\n RefString(\n \"main\",\n ),\n ),\n ],\n report_dir: Some(\n \"reports\",\n ),\n status_update_interval_seconds: None,\n db: \"ci-broker.db\",\n}","level":"DEBG","ts":"2024-10-11T06:00:42.712933722Z"} {"msg":"broker database: ci-broker.db","level":"INFO","ts":"2024-10-11T06:00:42.716303179Z"} {"msg":"adapter configuration Config {\n default_adapter: \"mcadapterface\",\n adapters: {\n \"mcadapterface\": Adapter { \n command: \"./adapter.sh\", \n env: {\n \"RADICLE_NATIVE_CI\": \"native-ci.yaml\",\n }, \n sensitive_env: {} },\n },\n filters: [\n Branch(\n RefString(\n \"main\",\n ),\n ),\n ],\n report_dir: Some(\n \"reports\",\n ),\n status_update_interval_seconds: None,\n db: \"ci-broker.db\",\n}","level":"DEBG","ts":"2024-10-11T06:00:43.076777857Z"} {"msg":"start thread to process events until a shutdown event","level":"INFO","ts":"2024-10-11T06:00:43.083398151Z"} {"msg":"event notification channel disconnected","level":"INFO","ts":"2024-10-11T06:00:43.083494201Z"} {"msg":"thread to process events ends","level":"INFO","ts":"2024-10-11T06:00:43.083519701Z"} {"msg":"start page updater thread","level":"INFO","ts":"2024-10-11T06:00:43.083959802Z"} {"msg":"wait about 60 seconds to update HTML report pages again","level":"INFO","ts":"2024-10-11T06:00:43.084019542Z"} thread 'main' panicked at src/bin/cib.rs:201:14: page updater thread succeeded: Write("reports/index.html", Os { code: 2, kind: NotFound, message: "No such file or directory" }) note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ci-broker.md:1326:1: step: then stderr contains "CI broker starts" ci-broker.md:1327:1: step: then stderr contains "CI broker ends in unrecoverable error" return: Failure thread 'logs_termination_due_to_error' panicked at /srv/http/a788579f-676d-43a3-abb0-c0ffdef52c45/src/target/debug/build/radicle-ci-broker-c935a0999709d40b/out/ci-broker.rs:5161:20: called `Result::unwrap()` on an `Err` value: "stderr does not contain \"CI broker ends in unrecoverable error\"" failures: acceptance_criteria_for_upgrades adapter_can_provide_url_for_info_on_run add_information_about_run_that_s_finished_in_failure_to_database add_information_about_run_that_s_finished_successfully_to_database add_information_about_run_that_s_running_to_database add_information_about_triggered_run_to_database allows_setting_minimum_log_level can_trigger_a_ci_run convert_recorded_node_events_into_ci_events don_t_insert_event_for_non_existent_repository don_t_insert_events_into_queue_when_not_allowed_by_filter events_can_be_queued_and_removed_from_queue filter_recorded_ci_events gives_helpful_error_message_if_it_doesn_t_understand_its_configuration_file gives_helpful_error_message_if_node_socket_can_t_be_found insert_events_into_queue insert_many_events_into_queue logs_adapter_stderr_output logs_start_and_successful_end logs_termination_due_to_error process_queued_events produces_a_json_status_file produces_a_report_page_upon_request record_node_events reports_it_version shuts_down_when_requested smoke_test__runs_adapter stops_if_the_node_connection_breaks update_and_show_information_about_run_to_running we_can_run_rad test result: FAILED. 7 passed; 30 failed; 0 ignored; 0 measured; 0 filtered out; finished in 75.17s error: test failed, to rerun pass `--test subplot` Doc-tests radicle_ci_broker running 1 test test src/msg.rs - msg::RunId (line 44) ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.60s error: 1 target failed: `--test subplot`