CI: FAILURE heartwood

Table of Contents

Run log

Plan, inside VM without network

plan: Executor starts
After 0.00 seconds at 2026-03-19 22:03:37ZProgram: ambient-execute-plan
Version: 0.13.1@52633e5
plan: Runnable plan
After 0.00 seconds at 2026-03-19 22:03:37Z
steps:
- action: mkdir
  pathname: /ci
- action: mkdir
  pathname: /ci/artifacts
- action: tar_extract
  archive: /dev/vdc
  directory: /ci/src
- action: tar_extract
  archive: /dev/vdf
  directory: /ci/deps
- action: tar_extract
  archive: /dev/vde
  directory: /ci/cache
- action: shell
  shell: ln -sf /ci /workspace
- action: shell
  shell: git config --global user.name 'Ambient CI'
- action: shell
  shell: git config --global user.email ambient@example.com
- action: cargo_fmt
- action: cargo_clippy
- action: cargo_build
- action: cargo_test
- action: shell
  shell: |
    # Because of a (temporary) limitation in Ambient, we need to set
    # these variables manually. Once Ambient manages environment
    # variables better, these can be deleted.
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:$PATH"
    export RUSTDOCFLAGS='-D warnings'

    cargo doc --workspace --no-deps --all-features
- action: shell
  shell: |
    # Because of a (temporary) limitation in Ambient, we need to set
    # these variables manually. Once Ambient manages environment
    # variables better, these can be deleted.
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:$PATH"

    # These are based on debian/control.
    export DEBEMAIL=liw@liw.fi
    export DEBFULLNAME="Lars Wirzenius"

    # Clean up after tests and documentation building. The Debian
    # package building tools do not want changes outside the
    # `debian` directory, compared to what is committed to Git, from
    # which the "upstream tarball" is created.
    git reset --hard
    git clean -fdx
    git status --ignored

    # Update debian/changelog with a new version so that every run
    # creates a newer version. This avoids us having to update the
    # file manually for every CI run.
    V="$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')"
    T="$(date -u "+%Y%m%dT%H%M%S")"
    version="$V.ci$T-1"
    dch -v "$version" "CI build under Ambient."
    dch -r ''
- action: deb
  packages: .
- action: tar_create
  archive: /dev/vde
  directory: /ci/cache
- action: tar_create
  archive: /dev/vdd
  directory: /ci/artifacts
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
workspace_dir: /ci
source_dir: /ci/src
deps_dir: /ci/deps
cache_dir: /ci/cache
artifacts_dir: /ci/artifacts
plan: Successful action mkdir: /ci
After 0.00 seconds at 2026-03-19 22:03:37Z
  • plan: Start action mkdir: /ci
    After 0.00 seconds at 2026-03-19 22:03:37Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
  • plan: Action succeeded mkdir: /ci
    After 0.00 seconds at 2026-03-19 22:03:37Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
plan: Successful action mkdir: /ci/artifacts
After 0.00 seconds at 2026-03-19 22:03:37Z
  • plan: Start action mkdir: /ci/artifacts
    After 0.00 seconds at 2026-03-19 22:03:37Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
  • plan: Action succeeded mkdir: /ci/artifacts
    After 0.00 seconds at 2026-03-19 22:03:37Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
plan: Successful action tar_extract
After 0.00 seconds at 2026-03-19 22:03:37Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-03-19 22:03:37Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-03-19 22:03:37Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
plan: Successful action tar_extract
After 0.12 seconds at 2026-03-19 22:03:37Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-03-19 22:03:37Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-03-19 22:03:40Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
plan: Successful action tar_extract
After 2.59 seconds at 2026-03-19 22:03:40Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-03-19 22:03:40Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-03-19 22:03:40Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
plan: Successful action shell: ln -sf /ci /workspace
After 2.60 seconds at 2026-03-19 22:03:40Z
  • plan: Start action shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • bash
    • -c
    • set -xeuo pipefail ln -sf /ci /workspace
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stderr:
    + ln -sf /ci /workspace
    
  • plan: Action succeeded shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
plan: Successful action shell: git config --global user.name 'Ambient CI'
After 2.61 seconds at 2026-03-19 22:03:40Z
  • plan: Start action shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.name 'Ambient CI'
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stderr:
    + git config --global user.name 'Ambient CI'
    
  • plan: Action succeeded shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
plan: Successful action shell: git config --global user.email ambient@example.com
After 2.63 seconds at 2026-03-19 22:03:40Z
  • plan: Start action shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.email ambient@example.com
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stderr:
    + git config --global user.email ambient@example.com
    
  • plan: Action succeeded shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
plan: Successful action cargo_fmt
After 2.65 seconds at 2026-03-19 22:03:40Z
  • plan: Start action cargo_fmt
    After 0.00 seconds at 2026-03-19 22:03:40Z
    CargoFmt(
        CargoFmt,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stdout:
    cargo 1.90.0 (840b83a10 2025-07-30)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stdout:
    clippy 0.1.90 (1159e78c47 2025-09-14)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:40Z
    Exit code: 0
    Stdout:
    rustc 1.90.0 (1159e78c4 2025-09-14)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:40Z
    • cargo
    • fmt
    • --check
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:41Z
    Exit code: 0
  • plan: Action succeeded cargo_fmt
    After 0.00 seconds at 2026-03-19 22:03:41Z
    CargoFmt(
        CargoFmt,
    )
plan: Successful action cargo_clippy
After 3.88 seconds at 2026-03-19 22:03:41Z
  • plan: Start action cargo_clippy
    After 0.00 seconds at 2026-03-19 22:03:41Z
    CargoClippy(
        CargoClippy,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:41Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:41Z
    Exit code: 0
    Stdout:
    cargo 1.90.0 (840b83a10 2025-07-30)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:41Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:41Z
    Exit code: 0
    Stdout:
    clippy 0.1.90 (1159e78c47 2025-09-14)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-03-19 22:03:41Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:03:41Z
    Exit code: 0
    Stdout:
    rustc 1.90.0 (1159e78c4 2025-09-14)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:03:41Z
    • cargo
    • clippy
    • --offline
    • --locked
    • --workspace
    • --all-targets
    • --no-deps
    • --
    • --deny
    • warnings
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:05:12Z
    Exit code: 0
    Stderr:
       Compiling libc v0.2.182
       Compiling proc-macro2 v1.0.101
       Compiling quote v1.0.41
       Compiling unicode-ident v1.0.12
       Compiling syn v2.0.106
        Checking cfg-if v1.0.0
        Checking memchr v2.7.2
       Compiling version_check v0.9.4
       Compiling jobserver v0.1.31
       Compiling shlex v1.3.0
       Compiling cc v1.2.2
        Checking getrandom v0.2.15
       Compiling typenum v1.17.0
        Checking regex-syntax v0.8.5
       Compiling generic-array v0.14.7
        Checking aho-corasick v1.1.3
        Checking regex-automata v0.4.9
        Checking rand_core v0.6.4
       Compiling serde_core v1.0.228
        Checking crypto-common v0.1.6
        Checking bstr v1.12.0
        Checking smallvec v1.15.1
       Compiling serde v1.0.228
       Compiling serde_derive v1.0.228
        Checking subtle v2.5.0
       Compiling thiserror v2.0.18
       Compiling thiserror-impl v2.0.18
        Checking stable_deref_trait v1.2.0
        Checking cpufeatures v0.2.12
        Checking fastrand v2.3.0
       Compiling parking_lot_core v0.9.12
        Checking scopeguard v1.2.0
        Checking lock_api v0.4.14
        Checking block-buffer v0.10.4
        Checking digest v0.10.7
        Checking parking_lot v0.12.5
        Checking byteorder v1.5.0
        Checking tinyvec_macros v0.1.1
        Checking tinyvec v1.6.0
        Checking gix-trace v0.1.18
        Checking bitflags v2.9.1
       Compiling crc32fast v1.5.0
        Checking unicode-normalization v0.1.23
        Checking gix-validate v0.11.0
        Checking gix-path v0.11.1
        Checking itoa v1.0.17
        Checking gix-utils v0.3.1
       Compiling typeid v1.0.3
        Checking same-file v1.0.6
        Checking walkdir v2.5.0
        Checking prodash v31.0.0
        Checking zlib-rs v0.6.0
        Checking erased-serde v0.4.6
       Compiling heapless v0.8.0
        Checking serde_fmt v1.0.3
        Checking hash32 v0.3.1
        Checking gix-features v0.46.1
        Checking value-bag-serde1 v1.11.1
       Compiling synstructure v0.13.1
        Checking faster-hex v0.10.0
        Checking value-bag v1.11.1
       Compiling getrandom v0.3.3
       Compiling zerofrom-derive v0.1.6
        Checking log v0.4.27
        Checking sha1 v0.10.6
        Checking zeroize v1.7.0
        Checking sha1-checked v0.10.0
       Compiling yoke-derive v0.7.5
        Checking zerofrom v0.1.6
       Compiling pkg-config v0.3.30
       Compiling rustix v1.1.3
        Checking yoke v0.7.5
        Checking gix-hash v0.22.1
       Compiling zerovec-derive v0.10.3
        Checking linux-raw-sys v0.11.0
        Checking zerovec v0.10.4
        Checking block-padding v0.3.3
       Compiling displaydoc v0.2.5
        Checking once_cell v1.21.3
        Checking inout v0.1.3
       Compiling syn v1.0.109
        Checking cipher v0.4.4
        Checking tinystr v0.7.6
        Checking litemap v0.7.5
       Compiling icu_locid_transform_data v1.5.1
        Checking writeable v0.5.5
        Checking icu_locid v1.5.0
       Compiling icu_provider_macros v1.5.0
        Checking percent-encoding v2.3.1
       Compiling icu_properties_data v1.5.1
        Checking icu_provider v1.5.0
       Compiling thiserror v1.0.69
       Compiling icu_normalizer_data v1.5.1
        Checking icu_locid_transform v1.5.0
        Checking icu_collections v1.5.0
       Compiling thiserror-impl v1.0.69
       Compiling serde_json v1.0.140
        Checking equivalent v1.0.1
        Checking hashbrown v0.14.3
        Checking icu_properties v1.5.1
        Checking indexmap v2.2.6
        Checking sha2 v0.10.8
        Checking utf16_iter v1.0.5
        Checking write16 v1.0.0
       Compiling vcpkg v0.2.15
        Checking ryu v1.0.17
       Compiling ref-cast v1.0.24
        Checking utf8_iter v1.0.4
        Checking icu_normalizer v1.5.0
       Compiling libz-sys v1.1.16
        Checking tempfile v3.25.0
        Checking universal-hash v0.5.1
       Compiling ref-cast-impl v1.0.24
        Checking opaque-debug v0.3.1
        Checking idna_adapter v1.2.0
        Checking dyn-clone v1.0.17
       Compiling autocfg v1.2.0
       Compiling num-traits v0.2.19
        Checking idna v1.0.3
       Compiling amplify_syn v2.0.1
       Compiling libgit2-sys v0.18.3+1.9.2
        Checking signature v1.6.4
        Checking ed25519 v1.5.3
       Compiling amplify_derive v4.0.0
        Checking form_urlencoded v1.2.1
        Checking aead v0.5.2
       Compiling serde_derive_internals v0.29.1
        Checking ascii v1.1.0
        Checking ct-codecs v1.1.1
        Checking amplify_num v0.5.2
        Checking amplify v4.6.0
        Checking ec25519 v0.1.0
       Compiling schemars_derive v1.0.4
        Checking url v2.5.4
        Checking git-ref-format-core v0.6.0
        Checking poly1305 v0.8.0
        Checking chacha20 v0.9.1
        Checking schemars v1.0.4
        Checking cyphergraphy v0.3.0
        Checking polyval v0.6.2
       Compiling sqlite3-src v0.7.0
        Checking hmac v0.12.1
        Checking keccak v0.1.6
        Checking base64ct v1.6.0
        Checking pem-rfc7468 v0.7.0
        Checking sha3 v0.10.8
        Checking pbkdf2 v0.12.2
        Checking ghash v0.5.1
        Checking aes v0.8.4
        Checking ctr v0.9.2
        Checking rand v0.8.5
       Compiling data-encoding v2.5.0
        Checking base32 v0.4.0
        Checking cypheraddr v0.4.0
       Compiling data-encoding-macro-internal v0.1.12
        Checking qcheck v1.0.0
        Checking aes-gcm v0.10.3
        Checking ssh-encoding v0.2.0
        Checking chacha20poly1305 v0.10.1
        Checking cbc v0.1.2
        Checking blowfish v0.9.1
        Checking jiff v0.2.20
        Checking data-encoding-macro v0.1.14
        Checking bcrypt-pbkdf v0.10.0
        Checking ssh-cipher v0.2.0
        Checking noise-framework v0.4.0
        Checking sqlite3-sys v0.18.0
        Checking socks5-client v0.4.1
        Checking base-x v0.2.11
       Compiling crossbeam-utils v0.8.19
        Checking signature v2.2.0
        Checking ssh-key v0.6.6
        Checking multibase v0.9.1
        Checking cyphernet v0.5.2
        Checking sqlite v0.37.0
        Checking radicle-ssh v0.10.0 (/ci/src/crates/radicle-ssh)
        Checking winnow v0.7.14
        Checking crossbeam-channel v0.5.15
        Checking radicle-crypto v0.16.0 (/ci/src/crates/radicle-crypto)
        Checking lazy_static v1.5.0
        Checking hashbrown v0.16.1
        Checking gix-hashtable v0.12.0
        Checking nonempty v0.9.0
        Checking siphasher v1.0.1
        Checking anstyle-query v1.0.2
        Checking radicle-dag v0.10.0 (/ci/src/crates/radicle-dag)
        Checking radicle-git-metadata v0.2.0 (/ci/src/crates/radicle-git-metadata)
        Checking gix-error v0.1.0
        Checking memmap2 v0.9.8
        Checking utf8parse v0.2.2
        Checking anstyle-parse v0.2.3
        Checking radicle-git-ref-format v0.1.0 (/ci/src/crates/radicle-git-ref-format)
        Checking is_terminal_polyfill v1.70.2
        Checking iana-time-zone v0.1.60
        Checking anstyle v1.0.13
        Checking colorchoice v1.0.0
        Checking base64 v0.21.7
        Checking anstream v0.6.21
        Checking chrono v0.4.38
        Checking colored v2.1.0
        Checking radicle-localtime v0.1.0 (/ci/src/crates/radicle-localtime)
        Checking serde-untagged v0.1.7
        Checking bytesize v2.0.1
        Checking gix-error v0.0.0
        Checking fast-glob v0.3.3
        Checking dunce v1.0.5
        Checking tree-sitter-language v0.1.2
        Checking gix-date v0.14.0
        Checking gix-actor v0.39.0
        Checking gix-date v0.13.0
        Checking gix-fs v0.19.1
        Checking gix-tempfile v21.0.1
        Checking gix-actor v0.38.0
        Checking gix-object v0.56.0
        Checking gix-chunk v0.6.0
        Checking mio v1.0.4
        Checking gix-quote v0.6.2
        Checking gix-commitgraph v0.33.0
        Checking gix-object v0.55.0
        Checking gix-chunk v0.5.0
        Checking sem_safe v0.2.0
        Checking errno v0.3.13
        Checking either v1.11.0
        Checking shell-words v1.1.0
        Checking gix-command v0.7.1
        Checking signals_receipts v0.2.0
        Checking gix-commitgraph v0.32.0
        Checking gix-revwalk v0.27.0
       Compiling object v0.37.3
       Compiling signal-hook v0.3.18
       Compiling rustversion v1.0.20
        Checking gix-revwalk v0.26.0
        Checking gix-lock v21.0.1
        Checking gix-url v0.35.1
        Checking gix-config-value v0.17.1
        Checking gix-sec v0.13.1
        Checking signal-hook-registry v1.4.5
        Checking adler2 v2.0.0
        Checking gimli v0.32.3
       Compiling rustix v0.38.34
        Checking addr2line v0.25.1
        Checking miniz_oxide v0.8.8
        Checking gix-prompt v0.13.1
        Checking gix-traverse v0.52.0
        Checking gix-revision v0.41.0
        Checking radicle-signals v0.11.0 (/ci/src/crates/radicle-signals)
        Checking gix-diff v0.58.0
        Checking git2 v0.20.4
        Checking mio v0.8.11
        Checking gix-packetline v0.21.1
        Checking gix-glob v0.24.0
       Compiling tree-sitter v0.24.4
       Compiling anyhow v1.0.82
       Compiling unicode-segmentation v1.11.0
       Compiling linux-raw-sys v0.4.13
        Checking rustc-demangle v0.1.26
        Checking radicle-oid v0.1.0 (/ci/src/crates/radicle-oid)
        Checking radicle-cob v0.19.0 (/ci/src/crates/radicle-cob)
        Checking radicle-core v0.2.0 (/ci/src/crates/radicle-core)
        Checking radicle v0.22.0 (/ci/src/crates/radicle)
        Checking backtrace v0.3.76
       Compiling convert_case v0.7.1
        Checking gix-refspec v0.37.0
        Checking gix-transport v0.54.0
        Checking signal-hook-mio v0.2.4
        Checking gix-pack v0.65.0
        Checking arc-swap v1.8.2
        Checking gix-credentials v0.36.0
        Checking gix-ref v0.59.0
        Checking gix-shallow v0.8.1
        Checking gix-negotiate v0.27.0
        Checking regex v1.11.1
       Compiling maybe-async v0.2.10
       Compiling proc-macro-error-attr2 v2.0.0
       Compiling portable-atomic v1.11.0
       Compiling proc-macro-error2 v2.0.1
        Checking gix-protocol v0.57.0
        Checking gix-odb v0.75.0
       Compiling derive_more-impl v2.0.1
       Compiling xattr v1.3.1
       Compiling filetime v0.2.23
        Checking uuid v1.20.0
       Compiling litrs v0.4.1
        Checking bitflags v1.3.2
        Checking unicode-width v0.2.1
        Checking bytes v1.11.1
        Checking console v0.16.0
       Compiling document-features v0.2.11
        Checking crossterm v0.25.0
       Compiling flate2 v1.1.1
       Compiling tar v0.4.40
        Checking derive_more v2.0.1
       Compiling git-ref-format-macro v0.6.0
        Checking newline-converter v0.3.0
        Checking snapbox-macros v0.3.8
        Checking salsa20 v0.10.2
        Checking fxhash v0.2.1
        Checking strsim v0.11.1
        Checking siphasher v0.3.11
        Checking streaming-iterator v0.1.9
       Compiling heck v0.5.0
        Checking normalize-line-endings v0.3.0
        Checking clap_lex v0.7.5
        Checking unicode-width v0.1.11
        Checking unit-prefix v0.5.1
        Checking similar v2.5.0
        Checking indicatif v0.18.0
        Checking snapbox v0.4.17
        Checking inquire v0.7.5
        Checking clap_builder v4.5.44
       Compiling clap_derive v4.5.41
        Checking bloomy v1.2.0
       Compiling radicle-surf v0.27.0
        Checking scrypt v0.11.0
        Checking git-ref-format v0.6.0
        Checking crossterm v0.29.0
        Checking radicle-fetch v0.18.0 (/ci/src/crates/radicle-fetch)
        Checking unicode-display-width v0.3.0
        Checking systemd-journal-logger v2.2.2
        Checking toml_datetime v0.7.5+spec-1.1.0
        Checking serde_spanned v1.0.4
       Compiling tree-sitter-ruby v0.23.1
       Compiling tree-sitter-json v0.24.8
       Compiling tree-sitter-typescript v0.23.2
       Compiling tree-sitter-python v0.23.4
       Compiling tree-sitter-go v0.23.4
       Compiling tree-sitter-toml-ng v0.6.0
       Compiling tree-sitter-c v0.23.2
       Compiling tree-sitter-css v0.23.1
       Compiling tree-sitter-bash v0.23.3
       Compiling tree-sitter-md v0.3.2
       Compiling tree-sitter-html v0.23.2
       Compiling tree-sitter-rust v0.23.2
        Checking pin-project-lite v0.2.16
        Checking toml_writer v1.0.6+spec-1.1.0
        Checking radicle-std-ext v0.2.0
        Checking toml v0.9.12+spec-1.1.0
        Checking radicle-git-ext v0.12.0
        Checking tokio v1.47.1
        Checking clap v4.5.44
        Checking sysinfo v0.37.2
        Checking diff v0.1.13
       Compiling radicle-cli v0.19.0 (/ci/src/crates/radicle-cli)
       Compiling radicle-node v0.18.0 (/ci/src/crates/radicle-node)
        Checking yansi v0.5.1
        Checking pretty_assertions v1.4.0
        Checking human-panic v2.0.6
        Checking clap_complete v4.5.60
        Checking structured-logger v1.0.4
        Checking radicle-protocol v0.6.0 (/ci/src/crates/radicle-protocol)
        Checking radicle-systemd v0.12.0 (/ci/src/crates/radicle-systemd)
        Checking radicle-term v0.17.0 (/ci/src/crates/radicle-term)
        Checking tree-sitter-highlight v0.24.4
        Checking itertools v0.14.0
        Checking num-integer v0.1.46
       Compiling qcheck-macros v1.0.0
        Checking socket2 v0.5.7
        Checking humantime v2.3.0
        Checking timeago v0.4.2
       Compiling escargot v0.5.10
        Checking lexopt v0.3.0
        Checking bit-vec v0.8.0
        Checking bit-set v0.8.0
        Checking num-bigint v0.4.6
        Checking rand_core v0.9.3
       Compiling ahash v0.8.11
        Checking num-rational v0.4.2
        Checking num-iter v0.1.45
        Checking num-complex v0.4.6
        Checking env_filter v0.1.3
        Checking zerocopy v0.7.35
        Checking borrow-or-share v0.2.2
        Checking fluent-uri v0.3.2
        Checking env_logger v0.11.8
        Checking num v0.4.3
        Checking radicle-cli-test v0.13.0 (/ci/src/crates/radicle-cli-test)
        Checking phf_shared v0.11.3
       Compiling test-log-macros v0.2.19
        Checking wait-timeout v0.2.1
       Compiling radicle-remote-helper v0.15.0 (/ci/src/crates/radicle-remote-helper)
        Checking outref v0.5.2
       Compiling paste v1.0.15
        Checking vsimd v0.8.0
        Checking ppv-lite86 v0.2.17
        Checking fnv v1.0.7
        Checking quick-error v1.2.3
        Checking rusty-fork v0.3.1
        Checking rand_chacha v0.9.0
        Checking uuid-simd v0.8.0
        Checking test-log v0.2.19
        Checking phf v0.11.3
        Checking fraction v0.15.3
        Checking referencing v0.30.0
        Checking rand v0.9.2
        Checking rand_xorshift v0.4.0
        Checking fancy-regex v0.14.0
        Checking email_address v0.2.9
        Checking num-cmp v0.1.0
        Checking unarray v0.1.4
        Checking bytecount v0.6.8
        Checking base64 v0.22.1
        Checking proptest v1.9.0
        Checking jsonschema v0.30.0
        Checking emojis v0.6.4
        Checking radicle-schemars v0.6.0 (/ci/src/crates/radicle-schemars)
        Checking radicle-windows v0.1.0 (/ci/src/crates/radicle-windows)
        Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 30s
    
  • plan: Action succeeded cargo_clippy
    After 0.00 seconds at 2026-03-19 22:05:12Z
    CargoClippy(
        CargoClippy,
    )
plan: Successful action cargo_build
After 95.39 seconds at 2026-03-19 22:05:12Z
  • plan: Start action cargo_build
    After 0.00 seconds at 2026-03-19 22:05:12Z
    CargoBuild(
        CargoBuild,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:05:12Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:05:12Z
    Exit code: 0
    Stdout:
    cargo 1.90.0 (840b83a10 2025-07-30)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:05:12Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:05:13Z
    Exit code: 0
    Stdout:
    clippy 0.1.90 (1159e78c47 2025-09-14)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-03-19 22:05:13Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:05:13Z
    Exit code: 0
    Stdout:
    rustc 1.90.0 (1159e78c4 2025-09-14)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-03-19 22:05:13Z
    • cargo
    • build
    • --offline
    • --locked
    • --workspace
    • --all-targets
  • plan: Program succeeded
    After 0.00 seconds at 2026-03-19 22:07:40Z
    Exit code: 0
    Stderr:
       Compiling libc v0.2.182
       Compiling cfg-if v1.0.0
       Compiling memchr v2.7.2
       Compiling shlex v1.3.0
       Compiling jobserver v0.1.31
       Compiling getrandom v0.2.15
       Compiling regex-syntax v0.8.5
       Compiling cc v1.2.2
       Compiling aho-corasick v1.1.3
       Compiling regex-automata v0.4.9
       Compiling typenum v1.17.0
       Compiling generic-array v0.14.7
       Compiling rand_core v0.6.4
       Compiling serde_core v1.0.228
       Compiling crypto-common v0.1.6
       Compiling bstr v1.12.0
       Compiling smallvec v1.15.1
       Compiling serde v1.0.228
       Compiling subtle v2.5.0
       Compiling thiserror v2.0.18
       Compiling fastrand v2.3.0
       Compiling stable_deref_trait v1.2.0
       Compiling cpufeatures v0.2.12
       Compiling scopeguard v1.2.0
       Compiling parking_lot_core v0.9.12
       Compiling lock_api v0.4.14
       Compiling block-buffer v0.10.4
       Compiling parking_lot v0.12.5
       Compiling digest v0.10.7
       Compiling bitflags v2.9.1
       Compiling byteorder v1.5.0
       Compiling tinyvec_macros v0.1.1
       Compiling tinyvec v1.6.0
       Compiling gix-trace v0.1.18
       Compiling gix-validate v0.11.0
       Compiling gix-path v0.11.1
       Compiling unicode-normalization v0.1.23
       Compiling crc32fast v1.5.0
       Compiling itoa v1.0.17
       Compiling same-file v1.0.6
       Compiling gix-utils v0.3.1
       Compiling walkdir v2.5.0
       Compiling typeid v1.0.3
       Compiling prodash v31.0.0
       Compiling zlib-rs v0.6.0
       Compiling erased-serde v0.4.6
       Compiling hash32 v0.3.1
       Compiling serde_fmt v1.0.3
       Compiling value-bag-serde1 v1.11.1
       Compiling heapless v0.8.0
       Compiling faster-hex v0.10.0
       Compiling value-bag v1.11.1
       Compiling log v0.4.27
       Compiling sha1 v0.10.6
       Compiling zeroize v1.7.0
       Compiling sha1-checked v0.10.0
       Compiling gix-features v0.46.1
       Compiling zerofrom v0.1.6
       Compiling getrandom v0.3.3
       Compiling yoke v0.7.5
       Compiling gix-hash v0.22.1
       Compiling linux-raw-sys v0.11.0
       Compiling zerovec v0.10.4
       Compiling block-padding v0.3.3
       Compiling once_cell v1.21.3
       Compiling inout v0.1.3
       Compiling rustix v1.1.3
       Compiling cipher v0.4.4
       Compiling tinystr v0.7.6
       Compiling writeable v0.5.5
       Compiling litemap v0.7.5
       Compiling icu_locid v1.5.0
       Compiling percent-encoding v2.3.1
       Compiling icu_provider v1.5.0
       Compiling icu_locid_transform_data v1.5.1
       Compiling icu_locid_transform v1.5.0
       Compiling icu_properties_data v1.5.1
       Compiling icu_collections v1.5.0
       Compiling hashbrown v0.14.3
       Compiling equivalent v1.0.1
       Compiling icu_properties v1.5.1
       Compiling indexmap v2.2.6
       Compiling icu_normalizer_data v1.5.1
       Compiling sha2 v0.10.8
       Compiling write16 v1.0.0
       Compiling utf16_iter v1.0.5
       Compiling ryu v1.0.17
       Compiling utf8_iter v1.0.4
       Compiling libz-sys v1.1.16
       Compiling serde_json v1.0.140
       Compiling icu_normalizer v1.5.0
       Compiling thiserror v1.0.69
       Compiling tempfile v3.25.0
       Compiling universal-hash v0.5.1
       Compiling opaque-debug v0.3.1
       Compiling ref-cast v1.0.24
       Compiling idna_adapter v1.2.0
       Compiling dyn-clone v1.0.17
       Compiling idna v1.0.3
       Compiling libgit2-sys v0.18.3+1.9.2
       Compiling signature v1.6.4
       Compiling ed25519 v1.5.3
       Compiling form_urlencoded v1.2.1
       Compiling aead v0.5.2
       Compiling ascii v1.1.0
       Compiling ct-codecs v1.1.1
       Compiling amplify_num v0.5.2
       Compiling amplify v4.6.0
       Compiling ec25519 v0.1.0
       Compiling url v2.5.4
       Compiling num-traits v0.2.19
       Compiling poly1305 v0.8.0
       Compiling git-ref-format-core v0.6.0
       Compiling chacha20 v0.9.1
       Compiling schemars v1.0.4
       Compiling cyphergraphy v0.3.0
       Compiling polyval v0.6.2
       Compiling sqlite3-src v0.7.0
       Compiling hmac v0.12.1
       Compiling keccak v0.1.6
       Compiling base64ct v1.6.0
       Compiling pem-rfc7468 v0.7.0
       Compiling sha3 v0.10.8
       Compiling pbkdf2 v0.12.2
       Compiling ghash v0.5.1
       Compiling aes v0.8.4
       Compiling ctr v0.9.2
       Compiling rand v0.8.5
       Compiling base32 v0.4.0
       Compiling cypheraddr v0.4.0
       Compiling qcheck v1.0.0
       Compiling aes-gcm v0.10.3
       Compiling ssh-encoding v0.2.0
       Compiling chacha20poly1305 v0.10.1
       Compiling blowfish v0.9.1
       Compiling cbc v0.1.2
       Compiling data-encoding v2.5.0
       Compiling jiff v0.2.20
       Compiling data-encoding-macro v0.1.14
       Compiling ssh-cipher v0.2.0
       Compiling bcrypt-pbkdf v0.10.0
       Compiling noise-framework v0.4.0
       Compiling sqlite3-sys v0.18.0
       Compiling socks5-client v0.4.1
       Compiling signature v2.2.0
       Compiling base-x v0.2.11
       Compiling multibase v0.9.1
       Compiling ssh-key v0.6.6
       Compiling cyphernet v0.5.2
       Compiling sqlite v0.37.0
       Compiling radicle-ssh v0.10.0 (/ci/src/crates/radicle-ssh)
       Compiling crossbeam-utils v0.8.19
       Compiling winnow v0.7.14
       Compiling crossbeam-channel v0.5.15
       Compiling radicle-crypto v0.16.0 (/ci/src/crates/radicle-crypto)
       Compiling hashbrown v0.16.1
       Compiling lazy_static v1.5.0
       Compiling gix-hashtable v0.12.0
       Compiling nonempty v0.9.0
       Compiling anstyle-query v1.0.2
       Compiling siphasher v1.0.1
       Compiling radicle-dag v0.10.0 (/ci/src/crates/radicle-dag)
       Compiling radicle-git-metadata v0.2.0 (/ci/src/crates/radicle-git-metadata)
       Compiling gix-error v0.1.0
       Compiling memmap2 v0.9.8
       Compiling utf8parse v0.2.2
       Compiling anstyle-parse v0.2.3
       Compiling radicle-git-ref-format v0.1.0 (/ci/src/crates/radicle-git-ref-format)
       Compiling colorchoice v1.0.0
       Compiling is_terminal_polyfill v1.70.2
       Compiling anstyle v1.0.13
       Compiling iana-time-zone v0.1.60
       Compiling base64 v0.21.7
       Compiling chrono v0.4.38
       Compiling anstream v0.6.21
       Compiling colored v2.1.0
       Compiling radicle-localtime v0.1.0 (/ci/src/crates/radicle-localtime)
       Compiling serde-untagged v0.1.7
       Compiling bytesize v2.0.1
       Compiling gix-error v0.0.0
       Compiling tree-sitter-language v0.1.2
       Compiling fast-glob v0.3.3
       Compiling dunce v1.0.5
       Compiling gix-date v0.14.0
       Compiling adler2 v2.0.0
       Compiling gix-actor v0.39.0
       Compiling gix-date v0.13.0
       Compiling git2 v0.20.4
       Compiling gix-fs v0.19.1
       Compiling gix-tempfile v21.0.1
       Compiling gix-actor v0.38.0
       Compiling gix-object v0.56.0
       Compiling radicle-oid v0.1.0 (/ci/src/crates/radicle-oid)
       Compiling radicle-core v0.2.0 (/ci/src/crates/radicle-core)
       Compiling radicle-cob v0.19.0 (/ci/src/crates/radicle-cob)
       Compiling gix-chunk v0.6.0
       Compiling mio v1.0.4
       Compiling radicle v0.22.0 (/ci/src/crates/radicle)
       Compiling gix-quote v0.6.2
       Compiling gix-commitgraph v0.33.0
       Compiling gix-object v0.55.0
       Compiling gix-chunk v0.5.0
       Compiling errno v0.3.13
       Compiling sem_safe v0.2.0
       Compiling either v1.11.0
       Compiling shell-words v1.1.0
       Compiling unicode-segmentation v1.11.0
       Compiling gix-command v0.7.1
       Compiling signals_receipts v0.2.0
       Compiling gix-commitgraph v0.32.0
       Compiling gix-revwalk v0.27.0
       Compiling gix-revwalk v0.26.0
       Compiling gix-lock v21.0.1
       Compiling gix-url v0.35.1
       Compiling gix-config-value v0.17.1
       Compiling gix-sec v0.13.1
       Compiling signal-hook-registry v1.4.5
       Compiling gimli v0.32.3
       Compiling addr2line v0.25.1
       Compiling signal-hook v0.3.18
       Compiling gix-prompt v0.13.1
       Compiling gix-traverse v0.52.0
       Compiling object v0.37.3
       Compiling gix-revision v0.41.0
       Compiling radicle-signals v0.11.0 (/ci/src/crates/radicle-signals)
       Compiling gix-diff v0.58.0
       Compiling miniz_oxide v0.8.8
       Compiling gix-glob v0.24.0
       Compiling mio v0.8.11
       Compiling gix-packetline v0.21.1
       Compiling tree-sitter v0.24.4
       Compiling rustc-demangle v0.1.26
       Compiling backtrace v0.3.76
       Compiling rustix v0.38.34
       Compiling gix-transport v0.54.0
       Compiling signal-hook-mio v0.2.4
       Compiling gix-refspec v0.37.0
       Compiling gix-pack v0.65.0
       Compiling arc-swap v1.8.2
       Compiling gix-credentials v0.36.0
       Compiling gix-ref v0.59.0
       Compiling gix-shallow v0.8.1
       Compiling gix-negotiate v0.27.0
       Compiling convert_case v0.7.1
       Compiling regex v1.11.1
       Compiling gix-protocol v0.57.0
       Compiling derive_more-impl v2.0.1
       Compiling gix-odb v0.75.0
       Compiling xattr v1.3.1
       Compiling uuid v1.20.0
       Compiling filetime v0.2.23
       Compiling bitflags v1.3.2
       Compiling bytes v1.11.1
       Compiling unicode-width v0.2.1
       Compiling console v0.16.0
       Compiling crossterm v0.25.0
       Compiling tar v0.4.40
       Compiling git-ref-format-macro v0.6.0
       Compiling flate2 v1.1.1
       Compiling derive_more v2.0.1
       Compiling anyhow v1.0.82
       Compiling portable-atomic v1.11.0
       Compiling newline-converter v0.3.0
       Compiling snapbox-macros v0.3.8
       Compiling salsa20 v0.10.2
       Compiling fxhash v0.2.1
       Compiling siphasher v0.3.11
       Compiling similar v2.5.0
       Compiling normalize-line-endings v0.3.0
       Compiling strsim v0.11.1
       Compiling clap_lex v0.7.5
       Compiling unit-prefix v0.5.1
       Compiling streaming-iterator v0.1.9
       Compiling unicode-width v0.1.11
       Compiling inquire v0.7.5
       Compiling indicatif v0.18.0
       Compiling clap_builder v4.5.44
       Compiling snapbox v0.4.17
       Compiling bloomy v1.2.0
       Compiling scrypt v0.11.0
       Compiling radicle-surf v0.27.0
       Compiling crossterm v0.29.0
       Compiling git-ref-format v0.6.0
       Compiling radicle-fetch v0.18.0 (/ci/src/crates/radicle-fetch)
       Compiling unicode-display-width v0.3.0
       Compiling systemd-journal-logger v2.2.2
       Compiling toml_datetime v0.7.5+spec-1.1.0
       Compiling serde_spanned v1.0.4
       Compiling tree-sitter-go v0.23.4
       Compiling tree-sitter-html v0.23.2
       Compiling tree-sitter-json v0.24.8
       Compiling tree-sitter-rust v0.23.2
       Compiling tree-sitter-md v0.3.2
       Compiling tree-sitter-c v0.23.2
       Compiling tree-sitter-toml-ng v0.6.0
       Compiling tree-sitter-css v0.23.1
       Compiling tree-sitter-bash v0.23.3
       Compiling tree-sitter-ruby v0.23.1
       Compiling tree-sitter-typescript v0.23.2
       Compiling tree-sitter-python v0.23.4
       Compiling toml_writer v1.0.6+spec-1.1.0
       Compiling pin-project-lite v0.2.16
       Compiling radicle-std-ext v0.2.0
       Compiling radicle-git-ext v0.12.0
       Compiling tokio v1.47.1
       Compiling toml v0.9.12+spec-1.1.0
       Compiling clap v4.5.44
       Compiling sysinfo v0.37.2
       Compiling yansi v0.5.1
       Compiling diff v0.1.13
       Compiling radicle-cli v0.19.0 (/ci/src/crates/radicle-cli)
       Compiling radicle-node v0.18.0 (/ci/src/crates/radicle-node)
       Compiling pretty_assertions v1.4.0
       Compiling human-panic v2.0.6
       Compiling clap_complete v4.5.60
       Compiling structured-logger v1.0.4
       Compiling radicle-protocol v0.6.0 (/ci/src/crates/radicle-protocol)
       Compiling radicle-systemd v0.12.0 (/ci/src/crates/radicle-systemd)
       Compiling radicle-term v0.17.0 (/ci/src/crates/radicle-term)
       Compiling tree-sitter-highlight v0.24.4
       Compiling itertools v0.14.0
       Compiling num-integer v0.1.46
       Compiling socket2 v0.5.7
       Compiling lexopt v0.3.0
       Compiling timeago v0.4.2
       Compiling humantime v2.3.0
       Compiling bit-vec v0.8.0
       Compiling bit-set v0.8.0
       Compiling escargot v0.5.10
       Compiling num-bigint v0.4.6
       Compiling rand_core v0.9.3
       Compiling num-rational v0.4.2
       Compiling num-iter v0.1.45
       Compiling num-complex v0.4.6
       Compiling env_filter v0.1.3
       Compiling zerocopy v0.7.35
       Compiling borrow-or-share v0.2.2
       Compiling fluent-uri v0.3.2
       Compiling ahash v0.8.11
       Compiling env_logger v0.11.8
       Compiling num v0.4.3
       Compiling radicle-cli-test v0.13.0 (/ci/src/crates/radicle-cli-test)
       Compiling phf_shared v0.11.3
       Compiling wait-timeout v0.2.1
       Compiling quick-error v1.2.3
       Compiling radicle-remote-helper v0.15.0 (/ci/src/crates/radicle-remote-helper)
       Compiling outref v0.5.2
       Compiling fnv v1.0.7
       Compiling ppv-lite86 v0.2.17
       Compiling vsimd v0.8.0
       Compiling rand_chacha v0.9.0
       Compiling rusty-fork v0.3.1
       Compiling uuid-simd v0.8.0
       Compiling test-log v0.2.19
       Compiling phf v0.11.3
       Compiling fraction v0.15.3
       Compiling referencing v0.30.0
       Compiling rand v0.9.2
       Compiling rand_xorshift v0.4.0
       Compiling fancy-regex v0.14.0
       Compiling email_address v0.2.9
       Compiling unarray v0.1.4
       Compiling num-cmp v0.1.0
       Compiling bytecount v0.6.8
       Compiling base64 v0.22.1
       Compiling jsonschema v0.30.0
       Compiling proptest v1.9.0
       Compiling emojis v0.6.4
       Compiling radicle-schemars v0.6.0 (/ci/src/crates/radicle-schemars)
       Compiling radicle-windows v0.1.0 (/ci/src/crates/radicle-windows)
        Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 26s
    
  • plan: Action succeeded cargo_build
    After 0.00 seconds at 2026-03-19 22:07:40Z
    CargoBuild(
        CargoBuild,
    )
plan: Start action cargo_test
After 242.73 seconds at 2026-03-19 22:07:40Z
CargoTest(
    CargoTest,
)
plan: Start program cargo
After 242.73 seconds at 2026-03-19 22:07:40Z
  • cargo
  • --version
plan: Program succeeded
After 242.77 seconds at 2026-03-19 22:07:40Z
Exit code: 0
Stdout:
cargo 1.90.0 (840b83a10 2025-07-30)
plan: Start program cargo
After 242.77 seconds at 2026-03-19 22:07:40Z
  • cargo
  • clippy
  • --version
plan: Program succeeded
After 242.86 seconds at 2026-03-19 22:07:40Z
Exit code: 0
Stdout:
clippy 0.1.90 (1159e78c47 2025-09-14)
plan: Start program rustc
After 242.86 seconds at 2026-03-19 22:07:40Z
  • rustc
  • --version
plan: Program succeeded
After 242.91 seconds at 2026-03-19 22:07:40Z
Exit code: 0
Stdout:
rustc 1.90.0 (1159e78c4 2025-09-14)
plan: Start program cargo
After 242.91 seconds at 2026-03-19 22:07:40Z
  • cargo
  • test
  • --offline
  • --locked
  • --workspace
plan: ERROR: Program failed
After 510.87 seconds at 2026-03-19 22:12:08Z
Exit code: 101
Stdout:
running 327 tests
test canonical::formatter::test::ascii_control_characters ... ok
test canonical::formatter::test::ordered_nested_object ... ok
test canonical::formatter::test::securesystemslib_asserts ... ok
test cob::cache::migrations::_2::tests::test_migration_2 ... ok
test cob::cache::migrations::_2::tests::test_patch_json_deserialization ... ok
test cob::cache::tests::test_check_version ... ok
test cob::cache::tests::test_migrate_to ... ok
test cob::common::test::test_color ... ok
test cob::common::test::test_emojis ... ok
test cob::common::test::test_title ... ok
test cob::identity::test::prop_json_eq_str ... ok
test cob::identity::test::test_identity_redact_revision ... ok
test cob::identity::test::test_identity_reject_concurrent ... ok
test cob::identity::test::test_identity_remove_delegate_concurrent ... ok
test cob::identity::test::test_identity_update_rejected ... ok
test cob::identity::test::test_identity_updates ... ok
test cob::identity::test::test_identity_updates_concurrent ... ok
test cob::identity::test::test_identity_updates_concurrent_outdated ... ok
test cob::issue::cache::tests::test_counts ... ok
test cob::issue::cache::tests::test_get ... ok
test cob::issue::cache::tests::test_is_empty ... ok
test cob::issue::cache::tests::test_list ... ok
test cob::issue::cache::tests::test_list_by_status ... ok
test cob::identity::test::test_valid_identity ... ok
test cob::issue::cache::tests::test_remove ... ok
test cob::issue::test::test_embeds ... ok
test cob::issue::test::test_embeds_edit ... ok
test cob::issue::test::test_invalid_actions ... ok
test cob::issue::test::test_concurrency ... ok
test cob::issue::test::test_invalid_cob ... ok
test cob::issue::test::test_invalid_tx ... ok
test cob::issue::test::test_invalid_tx_reference ... ok
test cob::issue::test::test_issue_all ... ok
test cob::issue::test::test_issue_comment ... ok
test cob::issue::test::test_issue_comment_redact ... ok
test cob::issue::test::test_issue_create_and_assign ... ok
test cob::issue::test::test_issue_create_and_get ... ok
test cob::issue::test::test_issue_create_and_change_state ... ok
test cob::issue::test::test_issue_create_and_unassign ... ok
test cob::issue::test::test_issue_create_and_reassign ... ok
test cob::issue::test::test_issue_edit ... ok
test cob::issue::test::test_issue_edit_description ... ok
test cob::issue::test::test_issue_multilines ... ok
test cob::issue::test::test_issue_label ... ok
test cob::issue::test::test_issue_react ... ok
test cob::issue::test::test_issue_state_serde ... ok
test cob::issue::test::test_ordering ... ok
test cob::patch::actions::test::test_review_edit ... ok
test cob::issue::test::test_issue_reply ... ok
test cob::patch::cache::tests::test_counts ... ok
test cob::patch::cache::tests::test_get ... ok
test cob::patch::cache::tests::test_is_empty ... ok
test cob::patch::cache::tests::test_list ... ok
test cob::patch::cache::tests::test_list_by_status ... ok
test cob::patch::cache::tests::test_find_by_revision ... ok
test cob::patch::encoding::review::test::test_review_deserialize_summary_migration_null_summary ... ok
test cob::patch::encoding::review::test::test_review_deserialize_summary_migration_with_summary ... ok
test cob::patch::encoding::review::test::test_review_deserialize_summary_migration_without_summary ... ok
test cob::patch::encoding::review::test::test_review_deserialize_summary_v2 ... ok
test cob::patch::encoding::review::test::test_review_summary ... ok
test cob::patch::test::test_json ... ok
test cob::patch::test::test_json_serialization ... ok
test cob::patch::test::test_patch_create_and_get ... ok
test cob::patch::cache::tests::test_remove ... ok
test cob::patch::test::test_patch_discussion ... ok
test cob::patch::test::test_patch_merge ... ok
test cob::patch::test::test_patch_redact ... ok
test cob::patch::test::test_patch_review ... ok
test cob::patch::test::test_patch_review_comment ... ok
test cob::patch::test::test_patch_review_duplicate ... ok
test cob::patch::test::test_patch_review_edit ... ok
test cob::patch::test::test_patch_review_edit_comment ... ok
test cob::patch::test::test_patch_review_remove_summary ... ok
test cob::patch::test::test_patch_review_revision_redact ... ok
test cob::patch::test::test_reactions_json_serialization ... ok
test cob::patch::test::test_revision_edit_redact ... ok
test cob::patch::test::test_revision_reaction ... ok
test cob::patch::test::test_revision_review_merge_redacted ... ok
test cob::stream::tests::test_all_from ... ok
test cob::stream::tests::test_all_from_until ... ok
test cob::stream::tests::test_all_until ... ok
test cob::stream::tests::test_from_until ... ok
test cob::stream::tests::test_regression_from_until ... ok
test cob::patch::test::test_patch_update ... ok
test cob::thread::tests::test_comment_edit_missing ... ok
test cob::thread::tests::test_comment_edit_redacted ... ok
test cob::thread::tests::test_comment_redact_missing ... ok
test cob::thread::tests::test_duplicate_comments ... ok
test cob::thread::tests::test_edit_comment ... ok
test cob::thread::tests::test_redact_comment ... ok
test cob::thread::tests::test_timeline ... ok
test git::canonical::protect::tests::refs_rad ... ok
test git::canonical::protect::tests::refs_rad_id ... ok
test git::canonical::protect::tests::refs_radieschen ... ok
test git::canonical::quorum::test::merge_base_commutative ... ok
test git::canonical::quorum::test::test_merge_bases ... ok
test git::canonical::rules::tests::test_canonical ... ok
test git::canonical::rules::tests::test_deserialization ... ok
test git::canonical::rules::tests::test_deserialize_extensions ... ok
test git::canonical::rules::tests::test_order ... ok
test git::canonical::rules::tests::test_roundtrip ... ok
test git::canonical::rules::tests::test_rule_validate_failures ... ok
test git::canonical::rules::tests::test_rule_validate_success ... ok
test git::canonical::rules::tests::test_special_branches ... ok
test git::canonical::symbolic::test::deserialize_infinite ... ok
test git::canonical::symbolic::test::deserialize_valid ... ok
test git::canonical::symbolic::test::infinite_extend ... ok
test git::canonical::symbolic::test::infinite_multi ... ok
test git::canonical::symbolic::test::infinite_single ... ok
test git::canonical::tests::test_commit_quorum_fork_of_a_fork ... ok
test git::canonical::tests::test_commit_quorum_forked_merge_commits ... ok
test git::canonical::tests::test_commit_quorum_groups ... ok
test git::canonical::tests::test_commit_quorum_linear ... ok
test git::canonical::tests::test_commit_quorum_merges ... ok
test git::canonical::tests::test_commit_quorum_single ... ok
test git::canonical::tests::test_commit_quorum_three_way_fork ... ok
test git::canonical::tests::test_commit_quorum_two_way_fork ... ok
test git::canonical::tests::test_quorum_different_types ... ok
test cob::thread::tests::prop_ordering ... ok
test git::canonical::tests::test_tag_quorum ... ok
test git::test::test_version_from_str ... ok
test git::test::test_version_ord ... ok
test identity::crefs::tests::invalid_clash ... ok
test identity::crefs::tests::invalid_clash_asterisk_name ... ok
test identity::crefs::tests::invalid_dangling ... ok
test identity::crefs::tests::omit_symbolic ... ok
test identity::crefs::tests::valid ... ok
test identity::crefs::tests::valid_asterisk_target ... ok
test identity::did::test::test_did_encode_decode ... ok
test identity::did::test::test_did_vectors ... ok
test git::canonical::tests::test_quorum_properties ... ok
test identity::doc::test::test_canonical_doc ... ok
test identity::doc::test::test_canonical_example ... ok
test identity::doc::test::test_default_branch_without_project ... ok
test identity::doc::test::test_duplicate_dids ... ok
test identity::doc::test::test_future_version_error ... ok
test identity::doc::test::test_is_valid_version ... ok
test identity::doc::test::test_max_delegates ... ok
test identity::doc::test::test_not_found ... ok
test identity::doc::test::test_parse_version ... ok
test identity::doc::test::test_visibility_json ... ok
test identity::doc::update::test::test_can_update_crefs ... ok
test identity::doc::update::test::test_cannot_include_default_branch_rule ... ok
test identity::doc::update::test::test_default_branch_rule_exists_after_verification ... ok
test identity::project::test::test_project_name ... ok
test node::address::store::test::test_alias ... ok
test node::address::store::test::test_disconnected ... ok
test node::address::store::test::test_disconnected_ban ... ok
test node::address::store::test::test_empty ... ok
test node::address::store::test::test_entries ... ok
test node::address::store::test::test_get_none ... ok
test node::address::store::test::test_insert_and_get ... ok
test node::address::store::test::test_insert_and_remove ... ok
test node::address::store::test::test_insert_and_update ... ok
test node::address::store::test::test_insert_duplicate ... ok
test node::address::store::test::test_node_aliases ... ok
test node::address::store::test::test_remove_nothing ... ok
test node::command::test::command_result ... ok
test node::config::test::deserialize_migrating_scope ... ok
test node::config::test::partial ... ok
test node::config::test::regression_ipv6_address_brackets ... ok
test node::config::test::regression_ipv6_address_no_brackets ... ok
test node::config::test::serialize_migrating_scope ... ok
test node::db::config::test::database_config_valid_combinations ... ok
test node::db::config::test::invalid ... ok
test node::db::test::migration_8::all_ipv6_formatted_dns_addresses_are_retyped ... ok
test node::db::test::migration_8::dns_address_starting_with_bracket_but_missing_closing_bracket_colon_is_unaffected ... ok
test node::db::test::migration_8::dns_address_with_bracket_not_at_start_is_unaffected ... ok
test node::db::test::migration_8::ipv4_address_is_unaffected ... ok
test node::db::test::migration_8::ipv6_formatted_dns_address_is_deleted_when_correct_ipv6_row_already_exists ... ok
test node::db::test::migration_8::ipv6_formatted_dns_address_is_retyped_to_ipv6 ... ok
test node::db::test::migration_8::migration_applies_to_all_nodes ... ok
test node::db::test::migration_8::plain_dns_hostname_without_brackets_is_unaffected ... ok
test node::db::test::migration_8::retype_preserves_address_metadata ... ok
test node::db::test::test_version ... ok
test node::features::test::test_operations ... ok
test node::notifications::store::test::test_branch_notifications ... ok
test node::notifications::store::test::test_clear ... ok
test node::notifications::store::test::test_cob_notifications ... ok
test node::notifications::store::test::test_counts_by_repo ... ok
test node::notifications::store::test::test_duplicate_notifications ... ok
test node::notifications::store::test::test_notification_status ... ok
test node::policy::store::test::test_follow_and_unfollow_node ... ok
test node::policy::store::test::test_node_aliases ... ok
test node::policy::store::test::test_node_policies ... ok
test node::policy::store::test::test_node_policy ... ok
test node::policy::store::test::test_repo_policies ... ok
test node::policy::store::test::test_repo_policy ... ok
test node::policy::store::test::test_seed_and_unseed_repo ... ok
test node::policy::store::test::test_update_alias ... ok
test node::policy::store::test::test_update_scope ... ok
test node::refs::store::test::test_count ... ok
test node::refs::store::test::test_set_and_delete ... ok
test node::refs::store::test::test_set_and_get ... ok
test node::routing::test::test_count ... ok
test node::routing::test::test_entries ... ok
test node::routing::test::test_insert_and_get ... ok
test node::routing::test::test_insert_and_get_resources ... ok
test node::routing::test::test_insert_and_remove ... ok
test node::routing::test::test_insert_duplicate ... ok
test node::routing::test::test_insert_existing_updated_time ... ok
test node::routing::test::test_len ... ok
test node::routing::test::test_prune ... ok
test node::routing::test::test_remove_many ... ok
test node::routing::test::test_remove_redundant ... ok
test node::routing::test::test_update_existing_multi ... ok
test node::sync::announce::test::all_synced_nodes_are_preferred_seeds ... ok
test node::sync::announce::test::announcer_adapts_target_to_reach ... ok
test node::sync::announce::test::announcer_preferred_seeds_or_replica_factor ... ok
test node::sync::announce::test::announcer_reached_max_replication_target ... ok
test node::sync::announce::test::announcer_reached_min_replication_target ... ok
test node::sync::announce::test::announcer_reached_preferred_seeds ... ok
test node::sync::announce::test::announcer_synced_with_unknown_node ... ok
test node::sync::announce::test::announcer_timed_out ... ok
test node::sync::announce::test::announcer_with_replication_factor_zero_and_preferred_seeds ... ok
test node::sync::announce::test::cannot_construct_announcer ... ok
test node::sync::announce::test::construct_node_appears_in_multiple_input_sets ... ok
test node::sync::announce::test::construct_only_preferred_seeds_provided ... ok
test node::sync::announce::test::invariant_progress_should_match_state ... ok
test node::sync::announce::test::local_node_in_multiple_sets ... ok
test node::sync::announce::test::local_node_in_preferred_seeds ... ok
test node::sync::announce::test::local_node_in_synced_set ... ok
test node::sync::announce::test::local_node_in_unsynced_set ... ok
test node::sync::announce::test::local_node_only_in_all_sets_results_in_no_seeds_error ... ok
test node::sync::announce::test::preferred_seeds_already_synced ... ok
test node::sync::announce::test::synced_with_local_node_is_ignored ... ok
test node::sync::announce::test::synced_with_same_node_multiple_times ... ok
test node::sync::announce::test::timed_out_after_reaching_success ... ok
test node::sync::fetch::test::all_nodes_are_candidates ... ok
test node::sync::fetch::test::all_nodes_are_fetchable ... ok
test node::sync::fetch::test::could_not_reach_target ... ok
test node::sync::fetch::test::ignores_duplicates_and_local_node ... ok
test node::sync::fetch::test::preferred_seeds_target_returned_over_replicas ... ok
test node::sync::fetch::test::reaches_target_of_max_replicas ... ok
test node::sync::fetch::test::reaches_target_of_preferred_seeds ... ok
test node::sync::fetch::test::reaches_target_of_replicas ... ok
test node::sync::test::ensure_replicas_construction ... ok
test node::sync::test::replicas_constrain_to ... ok
test node::test::test_address ... ok
test node::test::test_alias ... ok
test node::test::test_command_result ... ok
test node::test::test_user_agent ... ok
test node::timestamp::tests::test_timestamp_max ... ok
test profile::config::test::schema ... ok
test profile::test::canonicalize_home ... ok
test profile::test::test_config ... ok
test rad::tests::test_checkout ... ok
test rad::tests::test_fork ... ok
test rad::tests::test_init ... ok
test storage::git::tests::test_references_of ... ok
test storage::git::tests::test_sign_refs ... ok
test storage::git::transport::local::url::test::test_url_parse ... ok
test storage::git::transport::local::url::test::test_url_to_string ... ok
test storage::git::transport::remote::url::test::test_url_parse ... ok
test storage::refs::sigrefs::property::idempotent ... ok
test identity::doc::test::prop_encode_decode ... ok
test storage::refs::sigrefs::read::test::commit_reader::identity_root_error ... ok
test storage::refs::sigrefs::read::test::commit_reader::missing_commit ... ok
test storage::refs::sigrefs::read::test::commit_reader::missing_identity ... ignored, strict verification of `refs/rad/root` reverted due to compatibility issues
test storage::refs::sigrefs::read::test::commit_reader::read_ok ... ok
test storage::refs::sigrefs::read::test::commit_reader::too_many_parents ... ok
test storage::refs::sigrefs::read::test::commit_reader::tree_error ... ok
test storage::refs::sigrefs::read::test::identity_root_reader::doc_blob_error ... ok
test storage::refs::sigrefs::read::test::identity_root_reader::missing_identity ... ok
test storage::refs::sigrefs::read::test::identity_root_reader::read_ok_none ... ok
test storage::refs::sigrefs::read::test::identity_root_reader::read_ok_some ... ok
test storage::refs::sigrefs::read::test::resolve_tip::find_reference_error ... ok
test storage::refs::sigrefs::read::test::resolve_tip::missing_sigrefs ... ok
test storage::refs::sigrefs::read::test::resolve_tip::resolve_tip_ok ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::head_commit_error ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::head_replays_root ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::head_verify_mismatched_identity_error ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::head_verify_signature_error ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::invalid_parent ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::multiple_replays ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::read_ok_no_parent ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::read_ok_parent ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::replay_chain ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::single_commit ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::two_commits ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::walk_commit_error ... ok
test storage::refs::sigrefs::read::test::signed_refs_reader::walk_verify_error ... ok
test storage::refs::sigrefs::read::test::tree_reader::missing_both ... ok
test storage::refs::sigrefs::read::test::tree_reader::missing_refs ... ok
test storage::refs::sigrefs::read::test::tree_reader::missing_signature ... ok
test storage::refs::sigrefs::read::test::tree_reader::parse_refs_error ... ok
test storage::refs::sigrefs::read::test::tree_reader::parse_signature_error ... ok
test storage::refs::sigrefs::read::test::tree_reader::read_ok ... ok
test storage::refs::sigrefs::read::test::tree_reader::read_refs_error ... ok
test storage::refs::sigrefs::read::test::tree_reader::read_signature_error ... ok
test storage::refs::sigrefs::write::test::commit_writer::tree_error ... ok
test storage::refs::sigrefs::write::test::commit_writer::write_commit_error ... ok
test storage::refs::sigrefs::write::test::commit_writer::write_empty_refs ... ok
test storage::refs::sigrefs::write::test::commit_writer::write_root_ok ... ok
test storage::refs::sigrefs::write::test::commit_writer::write_with_parent_ok ... ok
test storage::refs::sigrefs::write::test::head_reader::no_head ... ok
test storage::refs::sigrefs::write::test::head_reader::read_ok ... ok
test storage::refs::sigrefs::write::test::head_reader::reference_error ... ok
test storage::refs::sigrefs::write::test::head_reader::refs_blob_error ... ok
test storage::refs::sigrefs::write::test::head_reader::refs_blob_missing ... ok
test storage::refs::sigrefs::write::test::head_reader::refs_parse_error ... ok
test storage::refs::sigrefs::write::test::head_reader::signature_blob_error ... ok
test storage::refs::sigrefs::write::test::head_reader::signature_blob_missing ... ok
test storage::refs::sigrefs::write::test::head_reader::signature_parse_error ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::commit_error ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::head_error ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::never_write_rad_sigrefs ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::reference_error ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::unchanged ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::write_empty_refs ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::write_root_ok ... ok
test storage::refs::sigrefs::write::test::signed_refs_writer::write_with_parent_ok ... ok
test storage::refs::sigrefs::write::test::tree_writer::sign_error ... ok
test storage::refs::sigrefs::write::test::tree_writer::write_ok ... ok
test storage::refs::sigrefs::write::test::tree_writer::write_tree_error ... ok
test storage::refs::tests::prop_canonical_roundtrip ... ok
test storage::refs::tests::test_rid_verification ... ok
test storage::tests::test_storage ... ok
test test::assert::test::assert_with_message ... ok
test test::assert::test::test_assert_no_move ... ok
test test::assert::test::test_assert_panic_0 - should panic ... ok
test test::assert::test::test_assert_panic_1 - should panic ... ok
test test::assert::test::test_assert_panic_2 - should panic ... ok
test test::assert::test::test_assert_succeed ... ok
test test::assert::test::test_panic_message ... ok
test version::test::test_version ... ok
test storage::refs::sigrefs::property::roundtrip ... ok

test result: ok. 326 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; finished in 8.62s


running 46 tests
test commands::block::args::test::should_not_parse ... ok
test commands::block::args::test::should_parse_nid ... ok
test commands::block::args::test::should_parse_rid ... ok
test commands::clone::args::test::should_parse_rid_non_urn ... ok
test commands::clone::args::test::should_parse_rid_url ... ok
test commands::clone::args::test::should_parse_rid_urn ... ok
test commands::cob::args::test::should_allow_log_json_format ... ok
test commands::cob::args::test::should_allow_log_pretty_format ... ok
test commands::cob::args::test::should_allow_show_json_format ... ok
test commands::cob::args::test::should_allow_update_json_format ... ok
test commands::cob::args::test::should_not_allow_show_pretty_format ... ok
test commands::cob::args::test::should_not_allow_update_pretty_format ... ok
test commands::fork::args::test::should_not_parse_rid_url ... ok
test commands::fork::args::test::should_parse_rid_non_urn ... ok
test commands::fork::args::test::should_parse_rid_urn ... ok
test commands::id::args::test::should_not_parse_into_payload - should panic ... ok
test commands::id::args::test::should_not_clobber_payload_args ... ok
test commands::id::args::test::should_not_parse_single_payload ... ok
test commands::id::args::test::should_parse_into_payload ... ok
test commands::id::args::test::should_not_parse_single_payloads ... ok
test commands::id::args::test::should_parse_multiple_payloads ... ok
test commands::init::args::test::should_not_parse_rid_url ... ok
test commands::id::args::test::should_parse_single_payload ... ok
test commands::init::args::test::should_parse_rid_non_urn ... ok
test commands::init::args::test::should_parse_rid_urn ... ok
test commands::patch::review::builder::tests::test_review_comments_basic ... ok
test commands::inspect::test::test_tree ... ok
test commands::patch::review::builder::tests::test_review_comments_before ... ok
test commands::patch::review::builder::tests::test_review_comments_multiline ... ok
test commands::patch::review::builder::tests::test_review_comments_split_hunk ... ok
test commands::publish::args::test::should_not_parse_rid_url ... ok
test commands::publish::args::test::should_parse_rid_non_urn ... ok
test commands::publish::args::test::should_parse_rid_urn ... ok
test commands::watch::args::test::should_parse_ref_str ... ok
test git::pretty_diff::test::test_pretty ... ignored
test git::ddiff::tests::diff_encode_decode_ddiff_hunk ... ok
test git::unified_diff::test::test_diff_content_encode_decode_content ... ok
test terminal::args::test::should_not_parse ... ok
test git::unified_diff::test::test_diff_encode_decode_diff ... ok
test terminal::args::test::should_parse_nid ... ok
test terminal::args::test::should_parse_rid ... ok
test terminal::format::test::test_strip_comments ... ok
test terminal::format::test::test_bytes ... ok
test terminal::patch::test::test_edit_display_message ... ok
test terminal::patch::test::test_create_display_message ... ok
test terminal::patch::test::test_update_display_message ... ok

test result: ok. 45 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; finished in 0.01s


running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s


running 115 tests
test commands::checkout::rad_checkout has been running for over 60 seconds
test commands::clone::rad_clone has been running for over 60 seconds
test commands::clone::rad_clone ... FAILED
test commands::checkout::rad_checkout ... ok
test commands::clone::rad_clone_bare ... FAILED
test commands::clone::rad_clone_all ... FAILED
test commands::clone::rad_clone_directory ... FAILED
test commands::clone::rad_clone_connect ... FAILED
test commands::clone::rad_clone_scope ... ok
test commands::clone::rad_clone_unknown ... ok
test commands::clone::rad_clone_partial_fail ... FAILED
test commands::clone::test_clone_without_seeds ... ok
test commands::cob::rad_cob_log ... ok
test commands::cob::rad_cob_migrate ... ok
test commands::cob::rad_cob_multiset ... ok
test commands::cob::rad_cob_operations ... ok
test commands::cob::rad_cob_show ... ok
test commands::cob::rad_cob_update_identity ... ok
test commands::cob::rad_cob_update ... ok
test commands::cob::test_cob_replication ... FAILED
test commands::cob::test_cob_deletion ... FAILED
test commands::git::git_push_amend ... FAILED
test commands::git::git_push_and_fetch ... FAILED
test commands::git::git_push_canonical_annotated_tags ... FAILED
test commands::git::git_push_canonical_lightweight_tags ... FAILED
test commands::git::git_push_diverge ... FAILED
test commands::git::git_push_converge ... FAILED
test commands::git::git_push_force_with_lease ... ok
test commands::git::git_push_rollback ... FAILED
test commands::git::git_tag ... FAILED
test commands::id::rad_id_collaboration ... ignored, slow
test commands::id::rad_id ... FAILED
test commands::id::rad_id_conflict ... FAILED
test commands::id::rad_id_private ... ok
test commands::id::rad_id_multi_delegate ... FAILED
test commands::id::rad_id_threshold ... FAILED
test commands::id::rad_id_threshold_soft_fork ... FAILED
test commands::id::rad_id_unknown_field ... ok
test commands::id::rad_id_unauthorized_delegate ... FAILED
test commands::id::rad_id_update_delete_field ... ok
test commands::init::rad_init ... ignored, part of many other tests
test commands::init::rad_init_bare ... ok
test commands::init::rad_init_detached_head ... ok
test commands::inbox::rad_inbox ... FAILED
test commands::init::rad_init_existing ... ok
test commands::init::rad_init_existing_bare ... ok
test commands::init::rad_init_no_git ... ok
test commands::init::rad_init_no_seed ... ok
test commands::init::rad_init_private ... ok
test commands::init::rad_init_private_clone ... ok
test commands::init::rad_init_private_clone_seed ... FAILED
test commands::init::rad_init_private_no_seed ... ok
test commands::init::rad_init_private_seed ... ok
test commands::init::rad_init_sync_not_connected ... ok
test commands::init::rad_init_sync_preferred ... ok
test commands::init::rad_init_sync_and_clone ... FAILED
test commands::init::rad_init_with_existing_remote ... ok
test commands::init::rad_publish ... ok
test commands::issue::rad_issue ... ok
test commands::init::rad_init_sync_timeout ... ok
test commands::jj::rad_jj_bare ... ok
test commands::jj::rad_jj_colocated_patch ... ok
test commands::issue::rad_issue_list ... ok
test commands::node::rad_node ... ok
test commands::node::rad_node_connect ... ok
test commands::patch::rad_merge_after_update ... ok
test commands::node::rad_node_connect_without_address ... ok
test commands::patch::rad_merge_no_ff ... ok
test commands::patch::rad_merge_via_push ... ok
test commands::patch::rad_patch ... ok
test commands::patch::rad_patch_ahead_behind ... ok
test commands::patch::rad_patch_checkout ... ok
test commands::patch::rad_patch_change_base ... ok
test commands::patch::rad_patch_checkout_revision ... ok
test commands::patch::rad_patch_checkout_force ... FAILED
test commands::patch::rad_patch_detached_head ... ok
test commands::patch::rad_patch_diff ... ok
test commands::patch::rad_patch_delete ... FAILED
test commands::patch::rad_patch_draft ... ok
test commands::patch::rad_patch_edit ... ok
test commands::patch::rad_patch_fetch_2 ... FAILED
test commands::patch::rad_patch_fetch_1 ... FAILED
test commands::patch::rad_patch_merge_draft ... ok
test commands::patch::rad_patch_open_explore ... ok
test commands::patch::rad_patch_revert_merge ... ok
test commands::patch::rad_patch_update ... ok
test commands::patch::rad_patch_via_push ... FAILED
test commands::patch::rad_patch_pull_update ... FAILED
test commands::patch::rad_push_and_pull_patches ... FAILED
test commands::patch::rad_review_by_hunk ... ok
test commands::policy::rad_block ... ok
test commands::policy::rad_seed_and_follow ... ok
test commands::policy::rad_seed_policy_allow_no_scope ... ok
test commands::policy::rad_seed_scope ... ok
test commands::policy::rad_seed_many ... ok
test commands::policy::rad_unseed ... ok
test commands::policy::rad_unseed_many ... ok
test commands::remote::rad_remote ... FAILED
test commands::sync::rad_fetch ... ok
test commands::sync::rad_sync_without_node ... ok
1773958296 test: rad-init:6: `rad init --name heartwood --description Radicle Heartwood Protocol & Stack --no-confirm --public -v` @ /tmp/.tmpSxtDk3/working/acme
1773958296 test: rad-init:28: `rad init` @ /tmp/.tmpSxtDk3/working/acme
1773958296 test: rad-init:35: `rad ls` @ /tmp/.tmpSxtDk3/working/acme
1773958296 test: rad-init:46: `rad node inventory` @ /tmp/.tmpSxtDk3/working/acme
1773958296 commands::sync::rad_sync      node: Opening policy database..
1773958296 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'
1773958296 commands::sync::rad_sync      node: Initializing service (Test)..
1773958296 commands::sync::rad_sync      node: Opening node database..
1773958296 commands::sync::rad_sync   service: Init @1773958296732
1773958296 commands::sync::rad_sync   service: Empty refs database, populating from storage..
1773958296 commands::sync::rad_sync   service: Saved local sync status for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..
1773958296 commands::sync::rad_sync   service: Adding refs announcement for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to historical gossip messages..
1773958296 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)
1773958296 commands::sync::rad_sync reactor-controller: Initializing reactor thread...
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Entering reactor event loop
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           node: Listening on 127.0.0.1:40633..
1773958296 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/alice/.radicle/node/control.sock..
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <runtime>           node: Running node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi in /tmp/.tmpSxtDk3/alice/.radicle..
1773958296 commands::sync::rad_sync      node: Opening policy database..
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Control thread listening on socket..
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)
1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel
1773958296 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'
1773958296 commands::sync::rad_sync      node: Initializing service (Test)..
1773958296 commands::sync::rad_sync      node: Opening node database..
1773958296 commands::sync::rad_sync   service: Init @1773958296821
1773958296 commands::sync::rad_sync   service: Empty refs database, populating from storage..
1773958296 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)
1773958296 commands::sync::rad_sync reactor-controller: Initializing reactor thread...
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Entering reactor event loop
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           node: Listening on 127.0.0.1:44241..
1773958296 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/bob/.radicle/node/control.sock..
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           node: Running node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk in /tmp/.tmpSxtDk3/bob/.radicle..
1773958296 commands::sync::rad_sync      node: Opening policy database..
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Control thread listening on socket..
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received command QueryState(..)
1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel
1773958297 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'
1773958297 commands::sync::rad_sync      node: Initializing service (Test)..
1773958297 commands::sync::rad_sync      node: Opening node database..
1773958297 commands::sync::rad_sync   service: Init @1773958296930
1773958297 commands::sync::rad_sync   service: Empty refs database, populating from storage..
1773958297 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)
1773958297 commands::sync::rad_sync reactor-controller: Initializing reactor thread...
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Entering reactor event loop
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           node: Listening on 127.0.0.1:33589..
1773958297 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/eve/.radicle/node/control.sock..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           node: Running node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z in /tmp/.tmpSxtDk3/eve/.radicle..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received command Seed(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Control thread listening on socket..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command QueryState(..)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command Seed(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Connect(z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk, 127.0.0.1:44241, ConnectOptions { persistent: false, timeout: 30s })
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241)..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Inbound connection from 127.0.0.1:35090..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Registering outbound transport for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Registering transport
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Outbound peer resource registered for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Accepted inbound connection from 127.0.0.1:35090..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Registering transport
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Inbound peer resource registered
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Handshake with ProtocolArtifact { session: "<omitted>", state: "<omitted>" } is complete
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Session established with z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connected to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241) (Outbound)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Subscribing to messages since timestamp 1773871897189..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>      transport: Handshake with ProtocolArtifact { session: "<omitted>", state: "<omitted>" } is complete
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Session established with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Connected to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:35090) (Inbound)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Subscribing to messages since timestamp 1773871897189..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command QueryState(..)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command Connect(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi, 127.0.0.1:40633, ConnectOptions { persistent: false, timeout: 30s })
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connecting to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633)..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Attempted connection to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Registering outbound transport for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Registering transport
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Outbound peer resource registered for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Inbound connection from 127.0.0.1:48804..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received node announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296732)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Accepted inbound connection from 127.0.0.1:48804..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Registering transport
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Inbound peer resource registered
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296821)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296732)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Address store entry for node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi updated at 1773958296732
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296821)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Address store entry for node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk updated at 1773958296821
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296822)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296734)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Missing seeded inventory rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji; initiating fetch..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [inbound connected] (all remotes)..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received subscription filter from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296822)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Opened new stream with id 13 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received subscription filter from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296733)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk cloning from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 13 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Worker processing incoming fetch for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk on stream 13..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296733)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 13..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>      transport: Handshake with ProtocolArtifact { session: "<omitted>", state: "<omitted>" } is complete
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Session established with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connected to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633) (Outbound)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Subscribing to messages since timestamp 1773871897227..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296733)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Queued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Handshake with ProtocolArtifact { session: "<omitted>", state: "<omitted>" } is complete
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Session established with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connected to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (127.0.0.1:48804) (Inbound)
1773958297 test: Waiting for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi))]
1773958297 test: Waiting for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi))]
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Subscribing to messages since timestamp 1773871897231..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296930)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received node announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296732)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296930)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Address store entry for node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z updated at 1773958296930
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296930)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 0 item(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296931)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296931)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received subscription filter from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296733)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296821)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296822)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296930)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296732)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296930)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Address store entry for node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi updated at 1773958296732
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Address store entry for node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z updated at 1773958296930
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296734)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)), (RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z)), (RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk))]
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Missing seeded inventory rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji; initiating fetch..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [outbound connected] (all remotes)..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received subscription filter from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Opened new stream with id 12 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 12 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Worker processing incoming fetch for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z on stream 12..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z cloning from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296733)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296733)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Queued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296821)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296821)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Address store entry for node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk updated at 1773958296821
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296822)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296822)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 12..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched rad/id (14ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched data for 1 remote(s) (26ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched rad/id (8ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched data refs for 0 remotes (31ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Validated 1 remote(s) (31ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 13 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Applied updates (32ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch: Finished clone of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (50ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Upload pack finished (47ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Upload process on stream 13 exited with result Ok(())
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 13, remote z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 13 of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk closing with 0 byte(s) sent and 0 byte(s) received
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received `close` command for stream 13 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Stream 13 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched data for 1 remote(s) (22ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received fetch result from worker for stream 13, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs"), oid: 99c549702e2bcfe02b0e68d4a2224fb7a1524529 }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: true, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName("xyz.radicle.project")): Payload { value: Object {"defaultBranch": String("master"), "description": String("Radicle Heartwood Protocol & Stack"), "name": String("heartwood")} }}, delegates: Delegates(NonEmpty { head: Did("did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Dequeued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..99c5497 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..f2de534 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Updating and announcing inventory for cloned repository rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched data refs for 0 remotes (28ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Validated 1 remote(s) (28ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Applied updates (29ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch: Finished clone of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (39ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297282)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 12 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Upload pack finished (39ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Upload process on stream 12 exited with result Ok(())
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 12, remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 12 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closing with 0 byte(s) sent and 0 byte(s) received
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297283)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `close` command for stream 12 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 12 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297282)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297282)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297283)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297283)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at 99c549702e2bcfe02b0e68d4a2224fb7a1524529 (t=1773958297283)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to 99c549702e2bcfe02b0e68d4a2224fb7a1524529
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297283)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297283)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297283)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 12, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs"), oid: 99c549702e2bcfe02b0e68d4a2224fb7a1524529 }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: true, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName("xyz.radicle.project")): Payload { value: Object {"defaultBranch": String("master"), "description": String("Radicle Heartwood Protocol & Stack"), "name": String("heartwood")} }}, delegates: Delegates(NonEmpty { head: Did("did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Dequeued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..99c5497 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..f2de534 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Updating and announcing inventory for cloned repository rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297295)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297296)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297295)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297295)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297296)
1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be in sync with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297296)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at 99c549702e2bcfe02b0e68d4a2224fb7a1524529 (t=1773958297296)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to 99c549702e2bcfe02b0e68d4a2224fb7a1524529
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297296)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297296)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be in sync with z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297296)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 test: rad-sync:7: `rad issue open --title Test `rad sync` --description Check that the command works -q --no-announce` @ /tmp/.tmpSxtDk3/working/acme
1773958297 test: rad-sync:14: `rad sync status --sort-by alias` @ /tmp/.tmpSxtDk3/working/acme
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"status"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"seedsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"nodeId"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)
1773958297 test: rad-sync:28: `rad sync --announce` @ /tmp/.tmpSxtDk3/working/acme
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"status"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"seedsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"subscribe"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"announceRefsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command AnnounceRefs(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Announcing refs rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi @ f2dfe80248cf8df5267dbedcd2e186bff3a8f84d to peers (t=1773958297410)..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Saved local sync status for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297410)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297410)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297410)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297410)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958297410)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958297410)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [outbound connected] (1 remote(s))..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Opened new stream with id 20 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [inbound connected] (1 remote(s))..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Opened new stream with id 21 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 20 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 21 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Worker processing incoming fetch for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk on stream 21..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Worker processing incoming fetch for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z on stream 20..
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z pulling from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk pulling from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 20..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 21..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched rad/id (4ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched rad/id (3ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched data for 1 remote(s) (19ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched data for 1 remote(s) (17ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched data refs for 0 remotes (27ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Validated 1 remote(s) (28ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 20 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Applied updates (28ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Upload pack finished (36ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Upload process on stream 20 exited with result Ok(())
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 20, remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 20 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closing with 0 byte(s) sent and 0 byte(s) received
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `close` command for stream 20 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 20 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch: Finished pull of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji (38ms)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.issue at 401d45c8e3d81ab963cb0cd16a4d41a69b39452a
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched data refs for 0 remotes (28ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 21 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Validated 1 remote(s) (29ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Upload pack finished (39ms)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Upload process on stream 21 exited with result Ok(())
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 21, remote z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 21 of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk closing with 0 byte(s) sent and 0 byte(s) received
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received `close` command for stream 21 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Stream 21 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Applied updates (30ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch: Finished pull of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji (41ms)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.issue at 401d45c8e3d81ab963cb0cd16a4d41a69b39452a
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 20, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Updated { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs"), old: 99c549702e2bcfe02b0e68d4a2224fb7a1524529, new: f2dfe80248cf8df5267dbedcd2e186bff3a8f84d }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a"), oid: 401d45c8e3d81ab963cb0cd16a4d41a69b39452a }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: false, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName("xyz.radicle.project")): Payload { value: Object {"defaultBranch": String("master"), "description": String("Radicle Heartwood Protocol & Stack"), "name": String("heartwood")} }}, delegates: Delegates(NonEmpty { head: Did("did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: ~ 99c5497..f2dfe80 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..401d45c refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297554)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297554)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received fetch result from worker for stream 21, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Updated { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs"), old: 99c549702e2bcfe02b0e68d4a2224fb7a1524529, new: f2dfe80248cf8df5267dbedcd2e186bff3a8f84d }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a"), oid: 401d45c8e3d81ab963cb0cd16a4d41a69b39452a }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Skipped { name: RefString("refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: false, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName("xyz.radicle.project")): Payload { value: Object {"defaultBranch": String("master"), "description": String("Radicle Heartwood Protocol & Stack"), "name": String("heartwood")} }}, delegates: Delegates(NonEmpty { head: Did("did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: ~ 99c5497..f2dfe80 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..401d45c refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297554)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at f2dfe80248cf8df5267dbedcd2e186bff3a8f84d (t=1773958297554)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to f2dfe80248cf8df5267dbedcd2e186bff3a8f84d
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297554)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297561)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297554)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297561)
1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297554)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297561)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at f2dfe80248cf8df5267dbedcd2e186bff3a8f84d (t=1773958297561)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to f2dfe80248cf8df5267dbedcd2e186bff3a8f84d
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297561)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297561)
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297561)
1773958297 test: rad-sync:36: `rad sync status --sort-by alias` @ /tmp/.tmpSxtDk3/working/acme
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"status"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"seedsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"nodeId"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)
1773958297 test: rad-sync:50: `rad sync --announce` @ /tmp/.tmpSxtDk3/working/acme
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"status"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"seedsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 test: rad-sync:57: `rad sync --fetch` @ /tmp/.tmpSxtDk3/working/acme
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"status"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"seedsFor","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","namespaces":["z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi"]}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"session","nid":"z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z"}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"fetch","rid":"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji","nid":"z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z","timeout":{"secs":9,"nanos":0}}` on control socket
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Fetch(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z)
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z [inbound connected] (all remotes)..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Opened new stream with id 13 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `open` command for stream 13 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Worker processing incoming fetch for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi on stream 13..
1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>        worker: z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi pulling from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 13..
1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e

thread 'z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>    ' panicked at crates/radicle-fetch/src/stage.rs:273:22:
ensure we got canonicdal 'rad/id' ref
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <upload-pack>     worker: Read channel timed out for upload-pack rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Upload pack finished (3008ms)
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Upload process on stream 13 exited with result Ok(())
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 13, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 13 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closing with 0 byte(s) sent and 0 byte(s) received
1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Peer z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully
1773958300 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `close` command for stream 13 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958300 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 13 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closed with 0 byte(s) sent and 0 byte(s) received
1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=7)
1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297282)
1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297295)
1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296734)
1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296734)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297295)
1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297282)
1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297282)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297295)
1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ignoring stale announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ignoring stale announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Not enough available peers to connect to (available=1, wanted=8)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Connecting to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)..
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Skipping redundant inventory announcement (t=1773958297282)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Attempted connection to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Failed to establish connection to eve.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (failed to lookup address information: Temporary failure in name resolution)
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: No fetches to cancel for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..
1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Not enough available peers to connect to (available=0, wanted=8)
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Not enough available peers to connect to (available=1, wanted=7)
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)..
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Skipping redundant inventory announcement (t=1773958297295)
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Failed to establish connection to bob.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (failed to lookup address information: Temporary failure in name resolution)
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..
1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Not enough available peers to connect to (available=0, wanted=7)

thread 'commands::sync::rad_sync' panicked at crates/radicle-cli-test/src/lib.rs:502:36:

--- Expected
++++ actual:   stdout
   1    1 | Fetching rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from the network, found 2 potential seed(s).
   2      - ✓ Target met: 2 seed(s)
   3      - 🌱 Fetched from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
   4      - 🌱 Fetched from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
        2 + ✗ 0 of 0 preferred seeds, and 0 of at least 2 total seeds… [fetch z6Mkux1…nVhib7Z@127.0.0.1:48804] <canceled>
        3 + ✗ Error: timed out reading from control socket

Exit status: 1

1773958328 test: Node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z shutting down..
1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...
1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Shutdown
1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Received `{"command":"shutdown"}` on control socket
1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Shutdown requested..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Peer ProtocolArtifact { session: "<omitted>", state: "<omitted>" } has reset the connection
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Disconnecting peer: connection reset
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Handing over transport Transport { session: "ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" }", state: Terminated, link_direction: Inbound, write_intent: false } with token 3
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Transport handover for disconnecting peer
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (connection reset)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Cancelled 1 ongoing, 0 queued for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Command returned error: i/o error: Broken pipe (os error 32)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..
1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           pool: Worker pool shutting down..
1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           node: Node shutdown completed for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958328 test: Node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk shutting down..
1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...
1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Shutdown
1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Received `{"command":"shutdown"}` on control socket
1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Shutdown requested..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Peer ProtocolArtifact { session: "<omitted>", state: "<omitted>" } has reset the connection
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Disconnecting peer: connection reset
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Handing over transport Transport { session: "ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" }", state: Terminated, link_direction: Outbound, write_intent: false } with token 2
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Transport handover for disconnecting peer
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (connection reset)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=2, wanted=8)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Failed to establish connection to bob.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (failed to lookup address information: Temporary failure in name resolution)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=8)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Failed to establish connection to eve.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (failed to lookup address information: Temporary failure in name resolution)
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=8)
1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           pool: Worker pool shutting down..
1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           node: Node shutdown completed for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
1773958328 test: Node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi shutting down..
1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Shutdown
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{"command":"shutdown"}` on control socket
1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Shutdown requested..

thread 'z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <runtime>     ' panicked at crates/radicle-node/src/runtime.rs:307:25:
called `Result::unwrap()` on an `Err` value: Any { .. }

thread 'commands::sync::rad_sync' panicked at /ci/src/crates/radicle-node/src/test/node.rs:95:14:
called `Result::unwrap()` on an `Err` value: Any { .. }
stack backtrace:
   0:     0x55b454016e52 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
   1:     0x55b454016e52 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
   2:     0x55b454016e52 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
   3:     0x55b454016e52 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
   4:     0x55b4540450e3 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
   5:     0x55b4540450e3 - core::fmt::write::h8a494366950f23bb
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
   6:     0x55b454011e73 - std::io::default_write_fmt::h7b8824096454f323
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
   7:     0x55b454011e73 - std::io::Write::write_fmt::h4e71294925c334d0
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
   8:     0x55b454016ca2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
   9:     0x55b454019469 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
  10:     0x55b45401929e - std::panicking::default_hook::h2c66fc99e962531d
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:324:9
  11:     0x55b452f32564 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb6bd65493727d71a
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1985:9
  12:     0x55b452f32564 - test::test_main_with_exit_callback::{{closure}}::h60217ec76a0ece4a
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:145:21
  13:     0x55b454019f3e - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h318e4efb8c1a5689
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1985:9
  14:     0x55b454019f3e - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:841:13
  15:     0x55b454019c0a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
  16:     0x55b454017359 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
  17:     0x55b45401989d - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
  18:     0x55b454042640 - core::panicking::panic_fmt::h62f63d096dd276af
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
  19:     0x55b454042b56 - core::result::unwrap_failed::h95bc3f5a607b2c95
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
  20:     0x55b452e26da5 - core::result::Result<T,E>::unwrap::h78bc25637382211d
                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:1167:23
  21:     0x55b452e26da5 - <radicle_node::test::node::NodeHandle<G> as core::ops::drop::Drop>::drop::hf0b40315654f78a2
                               at /ci/src/crates/radicle-node/src/test/node.rs:95:14
  22:     0x55b452e1e473 - core::ptr::drop_in_place<radicle_node::test::node::NodeHandle<radicle_crypto::ssh::keystore::MemorySigner>>::h9601d4473a0ab17e
                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:804:1
  23:     0x55b452e0595c - commands::commands::sync::rad_sync::hffaefd75adae47be
                               at /ci/src/crates/radicle-cli/tests/commands/sync.rs:106:1
  24:     0x55b452ce13f7 - commands::commands::sync::rad_sync::{{closure}}::hcc597e24966760f7
                               at /ci/src/crates/radicle-cli/tests/commands/sync.rs:65:14
  25:     0x55b452e1d126 - core::ops::function::FnOnce::call_once::hb619e5b438a133a9
                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs:253:5
  26:     0x55b452f37dcb - core::ops::function::FnOnce::call_once::h1f9474f1347fff52
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5
  27:     0x55b452f37dcb - test::__rust_begin_short_backtrace::ha52ab26e77157f03
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:648:18
  28:     0x55b452f36f05 - test::run_test_in_process::{{closure}}::h229c1a11a50b261f
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:74
  29:     0x55b452f36f05 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h78821afbf97b39a9
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9
  30:     0x55b452f36f05 - std::panicking::catch_unwind::do_call::h53abf3ed5bd32ba3
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
  31:     0x55b452f36f05 - std::panicking::catch_unwind::h6deb5fe1e91873c9
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
  32:     0x55b452f36f05 - std::panic::catch_unwind::hea0829b6b565654b
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
  33:     0x55b452f36f05 - test::run_test_in_process::hdc44dfecea3db21b
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:27
  34:     0x55b452f36f05 - test::run_test::{{closure}}::h0364ba59bf23f652
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:592:43
  35:     0x55b452efab04 - test::run_test::{{closure}}::h32730b304eec05da
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:622:41
  36:     0x55b452efab04 - std::sys::backtrace::__rust_begin_short_backtrace::h177cb952fc54ad2c
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:158:18
  37:     0x55b452efe4da - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h119d903520007597
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:559:17
  38:     0x55b452efe4da - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::hab88401d606702a6
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9
  39:     0x55b452efe4da - std::panicking::catch_unwind::do_call::h163fe12cca9901c2
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
  40:     0x55b452efe4da - std::panicking::catch_unwind::he81557d0e17cc1bc
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
  41:     0x55b452efe4da - std::panic::catch_unwind::hc2b8e79c20593955
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
  42:     0x55b452efe4da - std::thread::Builder::spawn_unchecked_::{{closure}}::hfa6b4978e07815cc
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:557:30
  43:     0x55b452efe4da - core::ops::function::FnOnce::call_once{{vtable.shim}}::hddcd7484a13fd793
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5
  44:     0x55b45401d51f - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h5924238c754de3b8
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1971:9
  45:     0x55b45401d51f - std::sys::pal::unix::thread::Thread::new::thread_start::hb6e99e73da4d28f8
                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/pal/unix/thread.rs:107:17
  46:     0x7f57daf291f5 - <unknown>
  47:     0x7f57dafa98dc - <unknown>
  48:                0x0 - <unknown>
Stderr:
    Finished `test` profile [unoptimized + debuginfo] target(s) in 0.24s
     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/radicle-40e59eb55c3d24a4)
     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/radicle_cli-381f02966f26f239)
     Running unittests src/main.rs (/ci/cache/cargo-target/debug/deps/rad-923feb31669d4602)
     Running tests/commands.rs (/ci/cache/cargo-target/debug/deps/commands-2ee7e5653a8bc761)

thread 'commands::sync::rad_sync' panicked at library/core/src/panicking.rs:233:5:
panic in a destructor during cleanup
thread caused non-unwinding panic. aborting.
error: test failed, to rerun pass `-p radicle-cli --test commands`

Caused by:
  process didn't exit successfully: `/ci/cache/cargo-target/debug/deps/commands-2ee7e5653a8bc761` (signal: 6, SIGABRT: process abort signal)
plan: Action failed: cargo_test
After 512.59 seconds at 2026-03-19 22:12:10Z
CargoTest(
    CargoTest,
)

Raw log messages for Ambient troubleshooting

Raw log messages

These raw log messages are meant to help Ambient developers figure out problems. You can ignore them.

  1. {
      "type": "executor_starts",
      "name": "ambient-execute-plan",
      "version": "0.13.1@52633e5",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 459607089
      },
      "log_source": "Plan"
    }
  2. {
      "type": "runnable_plan",
      "steps": [
        {
          "action": "mkdir",
          "pathname": "/ci"
        },
        {
          "action": "mkdir",
          "pathname": "/ci/artifacts"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vdc",
          "directory": "/ci/src"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vdf",
          "directory": "/ci/deps"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vde",
          "directory": "/ci/cache"
        },
        {
          "action": "shell",
          "shell": "ln -sf /ci /workspace"
        },
        {
          "action": "shell",
          "shell": "git config --global user.name 'Ambient CI'"
        },
        {
          "action": "shell",
          "shell": "git config --global user.email ambient@example.com"
        },
        {
          "action": "cargo_fmt"
        },
        {
          "action": "cargo_clippy"
        },
        {
          "action": "cargo_build"
        },
        {
          "action": "cargo_test"
        },
        {
          "action": "shell",
          "shell": "# Because of a (temporary) limitation in Ambient, we need to set\n# these variables manually. Once Ambient manages environment\n# variables better, these can be deleted.\nexport CARGO_TARGET_DIR=/workspace/cache\nexport CARGO_HOME=/workspace/deps\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:$PATH\"\nexport RUSTDOCFLAGS='-D warnings'\n\ncargo doc --workspace --no-deps --all-features\n"
        },
        {
          "action": "shell",
          "shell": "# Because of a (temporary) limitation in Ambient, we need to set\n# these variables manually. Once Ambient manages environment\n# variables better, these can be deleted.\nexport CARGO_TARGET_DIR=/workspace/cache\nexport CARGO_HOME=/workspace/deps\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:$PATH\"\n\n# These are based on debian/control.\nexport DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\n\n# Clean up after tests and documentation building. The Debian\n# package building tools do not want changes outside the\n# `debian` directory, compared to what is committed to Git, from\n# which the \"upstream tarball\" is created.\ngit reset --hard\ngit clean -fdx\ngit status --ignored\n\n# Update debian/changelog with a new version so that every run\n# creates a newer version. This avoids us having to update the\n# file manually for every CI run.\nV=\"$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')\"\nT=\"$(date -u \"+%Y%m%dT%H%M%S\")\"\nversion=\"$V.ci$T-1\"\ndch -v \"$version\" \"CI build under Ambient.\"\ndch -r ''\n"
        },
        {
          "action": "deb",
          "packages": "."
        },
        {
          "action": "tar_create",
          "archive": "/dev/vde",
          "directory": "/ci/cache"
        },
        {
          "action": "tar_create",
          "archive": "/dev/vdd",
          "directory": "/ci/artifacts"
        }
      ],
      "executor_drive": "/dev/vdb",
      "source_drive": "/dev/vdc",
      "artifact_drive": "/dev/vdd",
      "cache_drive": "/dev/vde",
      "deps_drive": "/dev/vdf",
      "workspace_dir": "/ci",
      "source_dir": "/ci/src",
      "deps_dir": "/ci/deps",
      "cache_dir": "/ci/cache",
      "artifacts_dir": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 459986345
      },
      "log_source": "Plan"
    }
  3. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 460194622
      },
      "log_source": "Plan"
    }
  4. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 460440462
      },
      "log_source": "Plan"
    }
  5. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 460598474
      },
      "log_source": "Plan"
    }
  6. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 460625499
      },
      "log_source": "Plan"
    }
  7. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 460825577
      },
      "log_source": "Plan"
    }
  8. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 580949949
      },
      "log_source": "Plan"
    }
  9. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1773957817,
        "nanos_since_epoch": 580986116
      },
      "log_source": "Plan"
    }
  10. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 47158996
      },
      "log_source": "Plan"
    }
  11. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 47204963
      },
      "log_source": "Plan"
    }
  12. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 53757260
      },
      "log_source": "Plan"
    }
  13. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 56419830
      },
      "log_source": "Plan"
    }
  14. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            108,
            110,
            32,
            45,
            115,
            102,
            32,
            47,
            99,
            105,
            32,
            47,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 58760019
      },
      "log_source": "Plan"
    }
  15. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ ln -sf /ci /workspace\n",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 65734007
      },
      "log_source": "Plan"
    }
  16. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 68333171
      },
      "log_source": "Plan"
    }
  17. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 70683005
      },
      "log_source": "Plan"
    }
  18. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            110,
            97,
            109,
            101,
            32,
            39,
            65,
            109,
            98,
            105,
            101,
            110,
            116,
            32,
            67,
            73,
            39,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 73294561
      },
      "log_source": "Plan"
    }
  19. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.name 'Ambient CI'\n",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 83619185
      },
      "log_source": "Plan"
    }
  20. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 86494260
      },
      "log_source": "Plan"
    }
  21. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 89117367
      },
      "log_source": "Plan"
    }
  22. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            101,
            109,
            97,
            105,
            108,
            32,
            97,
            109,
            98,
            105,
            101,
            110,
            116,
            64,
            101,
            120,
            97,
            109,
            112,
            108,
            101,
            46,
            99,
            111,
            109,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 91835393
      },
      "log_source": "Plan"
    }
  23. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.email ambient@example.com\n",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 99857668
      },
      "log_source": "Plan"
    }
  24. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 102821893
      },
      "log_source": "Plan"
    }
  25. {
      "type": "execute_action",
      "action": "cargo_fmt",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 105590842
      },
      "log_source": "Plan"
    }
  26. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 107567995
      },
      "log_source": "Plan"
    }
  27. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.90.0 (840b83a10 2025-07-30)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 167956499
      },
      "log_source": "Plan"
    }
  28. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 168001823
      },
      "log_source": "Plan"
    }
  29. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.90 (1159e78c47 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 288103020
      },
      "log_source": "Plan"
    }
  30. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 288146698
      },
      "log_source": "Plan"
    }
  31. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.90.0 (1159e78c4 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 340876636
      },
      "log_source": "Plan"
    }
  32. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            102,
            109,
            116
          ]
        },
        {
          "Unix": [
            45,
            45,
            99,
            104,
            101,
            99,
            107
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957820,
        "nanos_since_epoch": 340919199
      },
      "log_source": "Plan"
    }
  33. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 341151551
      },
      "log_source": "Plan"
    }
  34. {
      "type": "action_succeeded",
      "action": "cargo_fmt",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 341190894
      },
      "log_source": "Plan"
    }
  35. {
      "type": "execute_action",
      "action": "cargo_clippy",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 341196459
      },
      "log_source": "Plan"
    }
  36. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 341204197
      },
      "log_source": "Plan"
    }
  37. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.90.0 (840b83a10 2025-07-30)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 393751894
      },
      "log_source": "Plan"
    }
  38. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 396481619
      },
      "log_source": "Plan"
    }
  39. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.90 (1159e78c47 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 485699598
      },
      "log_source": "Plan"
    }
  40. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 488440506
      },
      "log_source": "Plan"
    }
  41. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.90.0 (1159e78c4 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 534680109
      },
      "log_source": "Plan"
    }
  42. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            97,
            108,
            108,
            45,
            116,
            97,
            114,
            103,
            101,
            116,
            115
          ]
        },
        {
          "Unix": [
            45,
            45,
            110,
            111,
            45,
            100,
            101,
            112,
            115
          ]
        },
        {
          "Unix": [
            45,
            45
          ]
        },
        {
          "Unix": [
            45,
            45,
            100,
            101,
            110,
            121
          ]
        },
        {
          "Unix": [
            119,
            97,
            114,
            110,
            105,
            110,
            103,
            115
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957821,
        "nanos_since_epoch": 534725772
      },
      "log_source": "Plan"
    }
  43. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "   Compiling libc v0.2.182\n   Compiling proc-macro2 v1.0.101\n   Compiling quote v1.0.41\n   Compiling unicode-ident v1.0.12\n   Compiling syn v2.0.106\n    Checking cfg-if v1.0.0\n    Checking memchr v2.7.2\n   Compiling version_check v0.9.4\n   Compiling jobserver v0.1.31\n   Compiling shlex v1.3.0\n   Compiling cc v1.2.2\n    Checking getrandom v0.2.15\n   Compiling typenum v1.17.0\n    Checking regex-syntax v0.8.5\n   Compiling generic-array v0.14.7\n    Checking aho-corasick v1.1.3\n    Checking regex-automata v0.4.9\n    Checking rand_core v0.6.4\n   Compiling serde_core v1.0.228\n    Checking crypto-common v0.1.6\n    Checking bstr v1.12.0\n    Checking smallvec v1.15.1\n   Compiling serde v1.0.228\n   Compiling serde_derive v1.0.228\n    Checking subtle v2.5.0\n   Compiling thiserror v2.0.18\n   Compiling thiserror-impl v2.0.18\n    Checking stable_deref_trait v1.2.0\n    Checking cpufeatures v0.2.12\n    Checking fastrand v2.3.0\n   Compiling parking_lot_core v0.9.12\n    Checking scopeguard v1.2.0\n    Checking lock_api v0.4.14\n    Checking block-buffer v0.10.4\n    Checking digest v0.10.7\n    Checking parking_lot v0.12.5\n    Checking byteorder v1.5.0\n    Checking tinyvec_macros v0.1.1\n    Checking tinyvec v1.6.0\n    Checking gix-trace v0.1.18\n    Checking bitflags v2.9.1\n   Compiling crc32fast v1.5.0\n    Checking unicode-normalization v0.1.23\n    Checking gix-validate v0.11.0\n    Checking gix-path v0.11.1\n    Checking itoa v1.0.17\n    Checking gix-utils v0.3.1\n   Compiling typeid v1.0.3\n    Checking same-file v1.0.6\n    Checking walkdir v2.5.0\n    Checking prodash v31.0.0\n    Checking zlib-rs v0.6.0\n    Checking erased-serde v0.4.6\n   Compiling heapless v0.8.0\n    Checking serde_fmt v1.0.3\n    Checking hash32 v0.3.1\n    Checking gix-features v0.46.1\n    Checking value-bag-serde1 v1.11.1\n   Compiling synstructure v0.13.1\n    Checking faster-hex v0.10.0\n    Checking value-bag v1.11.1\n   Compiling getrandom v0.3.3\n   Compiling zerofrom-derive v0.1.6\n    Checking log v0.4.27\n    Checking sha1 v0.10.6\n    Checking zeroize v1.7.0\n    Checking sha1-checked v0.10.0\n   Compiling yoke-derive v0.7.5\n    Checking zerofrom v0.1.6\n   Compiling pkg-config v0.3.30\n   Compiling rustix v1.1.3\n    Checking yoke v0.7.5\n    Checking gix-hash v0.22.1\n   Compiling zerovec-derive v0.10.3\n    Checking linux-raw-sys v0.11.0\n    Checking zerovec v0.10.4\n    Checking block-padding v0.3.3\n   Compiling displaydoc v0.2.5\n    Checking once_cell v1.21.3\n    Checking inout v0.1.3\n   Compiling syn v1.0.109\n    Checking cipher v0.4.4\n    Checking tinystr v0.7.6\n    Checking litemap v0.7.5\n   Compiling icu_locid_transform_data v1.5.1\n    Checking writeable v0.5.5\n    Checking icu_locid v1.5.0\n   Compiling icu_provider_macros v1.5.0\n    Checking percent-encoding v2.3.1\n   Compiling icu_properties_data v1.5.1\n    Checking icu_provider v1.5.0\n   Compiling thiserror v1.0.69\n   Compiling icu_normalizer_data v1.5.1\n    Checking icu_locid_transform v1.5.0\n    Checking icu_collections v1.5.0\n   Compiling thiserror-impl v1.0.69\n   Compiling serde_json v1.0.140\n    Checking equivalent v1.0.1\n    Checking hashbrown v0.14.3\n    Checking icu_properties v1.5.1\n    Checking indexmap v2.2.6\n    Checking sha2 v0.10.8\n    Checking utf16_iter v1.0.5\n    Checking write16 v1.0.0\n   Compiling vcpkg v0.2.15\n    Checking ryu v1.0.17\n   Compiling ref-cast v1.0.24\n    Checking utf8_iter v1.0.4\n    Checking icu_normalizer v1.5.0\n   Compiling libz-sys v1.1.16\n    Checking tempfile v3.25.0\n    Checking universal-hash v0.5.1\n   Compiling ref-cast-impl v1.0.24\n    Checking opaque-debug v0.3.1\n    Checking idna_adapter v1.2.0\n    Checking dyn-clone v1.0.17\n   Compiling autocfg v1.2.0\n   Compiling num-traits v0.2.19\n    Checking idna v1.0.3\n   Compiling amplify_syn v2.0.1\n   Compiling libgit2-sys v0.18.3+1.9.2\n    Checking signature v1.6.4\n    Checking ed25519 v1.5.3\n   Compiling amplify_derive v4.0.0\n    Checking form_urlencoded v1.2.1\n    Checking aead v0.5.2\n   Compiling serde_derive_internals v0.29.1\n    Checking ascii v1.1.0\n    Checking ct-codecs v1.1.1\n    Checking amplify_num v0.5.2\n    Checking amplify v4.6.0\n    Checking ec25519 v0.1.0\n   Compiling schemars_derive v1.0.4\n    Checking url v2.5.4\n    Checking git-ref-format-core v0.6.0\n    Checking poly1305 v0.8.0\n    Checking chacha20 v0.9.1\n    Checking schemars v1.0.4\n    Checking cyphergraphy v0.3.0\n    Checking polyval v0.6.2\n   Compiling sqlite3-src v0.7.0\n    Checking hmac v0.12.1\n    Checking keccak v0.1.6\n    Checking base64ct v1.6.0\n    Checking pem-rfc7468 v0.7.0\n    Checking sha3 v0.10.8\n    Checking pbkdf2 v0.12.2\n    Checking ghash v0.5.1\n    Checking aes v0.8.4\n    Checking ctr v0.9.2\n    Checking rand v0.8.5\n   Compiling data-encoding v2.5.0\n    Checking base32 v0.4.0\n    Checking cypheraddr v0.4.0\n   Compiling data-encoding-macro-internal v0.1.12\n    Checking qcheck v1.0.0\n    Checking aes-gcm v0.10.3\n    Checking ssh-encoding v0.2.0\n    Checking chacha20poly1305 v0.10.1\n    Checking cbc v0.1.2\n    Checking blowfish v0.9.1\n    Checking jiff v0.2.20\n    Checking data-encoding-macro v0.1.14\n    Checking bcrypt-pbkdf v0.10.0\n    Checking ssh-cipher v0.2.0\n    Checking noise-framework v0.4.0\n    Checking sqlite3-sys v0.18.0\n    Checking socks5-client v0.4.1\n    Checking base-x v0.2.11\n   Compiling crossbeam-utils v0.8.19\n    Checking signature v2.2.0\n    Checking ssh-key v0.6.6\n    Checking multibase v0.9.1\n    Checking cyphernet v0.5.2\n    Checking sqlite v0.37.0\n    Checking radicle-ssh v0.10.0 (/ci/src/crates/radicle-ssh)\n    Checking winnow v0.7.14\n    Checking crossbeam-channel v0.5.15\n    Checking radicle-crypto v0.16.0 (/ci/src/crates/radicle-crypto)\n    Checking lazy_static v1.5.0\n    Checking hashbrown v0.16.1\n    Checking gix-hashtable v0.12.0\n    Checking nonempty v0.9.0\n    Checking siphasher v1.0.1\n    Checking anstyle-query v1.0.2\n    Checking radicle-dag v0.10.0 (/ci/src/crates/radicle-dag)\n    Checking radicle-git-metadata v0.2.0 (/ci/src/crates/radicle-git-metadata)\n    Checking gix-error v0.1.0\n    Checking memmap2 v0.9.8\n    Checking utf8parse v0.2.2\n    Checking anstyle-parse v0.2.3\n    Checking radicle-git-ref-format v0.1.0 (/ci/src/crates/radicle-git-ref-format)\n    Checking is_terminal_polyfill v1.70.2\n    Checking iana-time-zone v0.1.60\n    Checking anstyle v1.0.13\n    Checking colorchoice v1.0.0\n    Checking base64 v0.21.7\n    Checking anstream v0.6.21\n    Checking chrono v0.4.38\n    Checking colored v2.1.0\n    Checking radicle-localtime v0.1.0 (/ci/src/crates/radicle-localtime)\n    Checking serde-untagged v0.1.7\n    Checking bytesize v2.0.1\n    Checking gix-error v0.0.0\n    Checking fast-glob v0.3.3\n    Checking dunce v1.0.5\n    Checking tree-sitter-language v0.1.2\n    Checking gix-date v0.14.0\n    Checking gix-actor v0.39.0\n    Checking gix-date v0.13.0\n    Checking gix-fs v0.19.1\n    Checking gix-tempfile v21.0.1\n    Checking gix-actor v0.38.0\n    Checking gix-object v0.56.0\n    Checking gix-chunk v0.6.0\n    Checking mio v1.0.4\n    Checking gix-quote v0.6.2\n    Checking gix-commitgraph v0.33.0\n    Checking gix-object v0.55.0\n    Checking gix-chunk v0.5.0\n    Checking sem_safe v0.2.0\n    Checking errno v0.3.13\n    Checking either v1.11.0\n    Checking shell-words v1.1.0\n    Checking gix-command v0.7.1\n    Checking signals_receipts v0.2.0\n    Checking gix-commitgraph v0.32.0\n    Checking gix-revwalk v0.27.0\n   Compiling object v0.37.3\n   Compiling signal-hook v0.3.18\n   Compiling rustversion v1.0.20\n    Checking gix-revwalk v0.26.0\n    Checking gix-lock v21.0.1\n    Checking gix-url v0.35.1\n    Checking gix-config-value v0.17.1\n    Checking gix-sec v0.13.1\n    Checking signal-hook-registry v1.4.5\n    Checking adler2 v2.0.0\n    Checking gimli v0.32.3\n   Compiling rustix v0.38.34\n    Checking addr2line v0.25.1\n    Checking miniz_oxide v0.8.8\n    Checking gix-prompt v0.13.1\n    Checking gix-traverse v0.52.0\n    Checking gix-revision v0.41.0\n    Checking radicle-signals v0.11.0 (/ci/src/crates/radicle-signals)\n    Checking gix-diff v0.58.0\n    Checking git2 v0.20.4\n    Checking mio v0.8.11\n    Checking gix-packetline v0.21.1\n    Checking gix-glob v0.24.0\n   Compiling tree-sitter v0.24.4\n   Compiling anyhow v1.0.82\n   Compiling unicode-segmentation v1.11.0\n   Compiling linux-raw-sys v0.4.13\n    Checking rustc-demangle v0.1.26\n    Checking radicle-oid v0.1.0 (/ci/src/crates/radicle-oid)\n    Checking radicle-cob v0.19.0 (/ci/src/crates/radicle-cob)\n    Checking radicle-core v0.2.0 (/ci/src/crates/radicle-core)\n    Checking radicle v0.22.0 (/ci/src/crates/radicle)\n    Checking backtrace v0.3.76\n   Compiling convert_case v0.7.1\n    Checking gix-refspec v0.37.0\n    Checking gix-transport v0.54.0\n    Checking signal-hook-mio v0.2.4\n    Checking gix-pack v0.65.0\n    Checking arc-swap v1.8.2\n    Checking gix-credentials v0.36.0\n    Checking gix-ref v0.59.0\n    Checking gix-shallow v0.8.1\n    Checking gix-negotiate v0.27.0\n    Checking regex v1.11.1\n   Compiling maybe-async v0.2.10\n   Compiling proc-macro-error-attr2 v2.0.0\n   Compiling portable-atomic v1.11.0\n   Compiling proc-macro-error2 v2.0.1\n    Checking gix-protocol v0.57.0\n    Checking gix-odb v0.75.0\n   Compiling derive_more-impl v2.0.1\n   Compiling xattr v1.3.1\n   Compiling filetime v0.2.23\n    Checking uuid v1.20.0\n   Compiling litrs v0.4.1\n    Checking bitflags v1.3.2\n    Checking unicode-width v0.2.1\n    Checking bytes v1.11.1\n    Checking console v0.16.0\n   Compiling document-features v0.2.11\n    Checking crossterm v0.25.0\n   Compiling flate2 v1.1.1\n   Compiling tar v0.4.40\n    Checking derive_more v2.0.1\n   Compiling git-ref-format-macro v0.6.0\n    Checking newline-converter v0.3.0\n    Checking snapbox-macros v0.3.8\n    Checking salsa20 v0.10.2\n    Checking fxhash v0.2.1\n    Checking strsim v0.11.1\n    Checking siphasher v0.3.11\n    Checking streaming-iterator v0.1.9\n   Compiling heck v0.5.0\n    Checking normalize-line-endings v0.3.0\n    Checking clap_lex v0.7.5\n    Checking unicode-width v0.1.11\n    Checking unit-prefix v0.5.1\n    Checking similar v2.5.0\n    Checking indicatif v0.18.0\n    Checking snapbox v0.4.17\n    Checking inquire v0.7.5\n    Checking clap_builder v4.5.44\n   Compiling clap_derive v4.5.41\n    Checking bloomy v1.2.0\n   Compiling radicle-surf v0.27.0\n    Checking scrypt v0.11.0\n    Checking git-ref-format v0.6.0\n    Checking crossterm v0.29.0\n    Checking radicle-fetch v0.18.0 (/ci/src/crates/radicle-fetch)\n    Checking unicode-display-width v0.3.0\n    Checking systemd-journal-logger v2.2.2\n    Checking toml_datetime v0.7.5+spec-1.1.0\n    Checking serde_spanned v1.0.4\n   Compiling tree-sitter-ruby v0.23.1\n   Compiling tree-sitter-json v0.24.8\n   Compiling tree-sitter-typescript v0.23.2\n   Compiling tree-sitter-python v0.23.4\n   Compiling tree-sitter-go v0.23.4\n   Compiling tree-sitter-toml-ng v0.6.0\n   Compiling tree-sitter-c v0.23.2\n   Compiling tree-sitter-css v0.23.1\n   Compiling tree-sitter-bash v0.23.3\n   Compiling tree-sitter-md v0.3.2\n   Compiling tree-sitter-html v0.23.2\n   Compiling tree-sitter-rust v0.23.2\n    Checking pin-project-lite v0.2.16\n    Checking toml_writer v1.0.6+spec-1.1.0\n    Checking radicle-std-ext v0.2.0\n    Checking toml v0.9.12+spec-1.1.0\n    Checking radicle-git-ext v0.12.0\n    Checking tokio v1.47.1\n    Checking clap v4.5.44\n    Checking sysinfo v0.37.2\n    Checking diff v0.1.13\n   Compiling radicle-cli v0.19.0 (/ci/src/crates/radicle-cli)\n   Compiling radicle-node v0.18.0 (/ci/src/crates/radicle-node)\n    Checking yansi v0.5.1\n    Checking pretty_assertions v1.4.0\n    Checking human-panic v2.0.6\n    Checking clap_complete v4.5.60\n    Checking structured-logger v1.0.4\n    Checking radicle-protocol v0.6.0 (/ci/src/crates/radicle-protocol)\n    Checking radicle-systemd v0.12.0 (/ci/src/crates/radicle-systemd)\n    Checking radicle-term v0.17.0 (/ci/src/crates/radicle-term)\n    Checking tree-sitter-highlight v0.24.4\n    Checking itertools v0.14.0\n    Checking num-integer v0.1.46\n   Compiling qcheck-macros v1.0.0\n    Checking socket2 v0.5.7\n    Checking humantime v2.3.0\n    Checking timeago v0.4.2\n   Compiling escargot v0.5.10\n    Checking lexopt v0.3.0\n    Checking bit-vec v0.8.0\n    Checking bit-set v0.8.0\n    Checking num-bigint v0.4.6\n    Checking rand_core v0.9.3\n   Compiling ahash v0.8.11\n    Checking num-rational v0.4.2\n    Checking num-iter v0.1.45\n    Checking num-complex v0.4.6\n    Checking env_filter v0.1.3\n    Checking zerocopy v0.7.35\n    Checking borrow-or-share v0.2.2\n    Checking fluent-uri v0.3.2\n    Checking env_logger v0.11.8\n    Checking num v0.4.3\n    Checking radicle-cli-test v0.13.0 (/ci/src/crates/radicle-cli-test)\n    Checking phf_shared v0.11.3\n   Compiling test-log-macros v0.2.19\n    Checking wait-timeout v0.2.1\n   Compiling radicle-remote-helper v0.15.0 (/ci/src/crates/radicle-remote-helper)\n    Checking outref v0.5.2\n   Compiling paste v1.0.15\n    Checking vsimd v0.8.0\n    Checking ppv-lite86 v0.2.17\n    Checking fnv v1.0.7\n    Checking quick-error v1.2.3\n    Checking rusty-fork v0.3.1\n    Checking rand_chacha v0.9.0\n    Checking uuid-simd v0.8.0\n    Checking test-log v0.2.19\n    Checking phf v0.11.3\n    Checking fraction v0.15.3\n    Checking referencing v0.30.0\n    Checking rand v0.9.2\n    Checking rand_xorshift v0.4.0\n    Checking fancy-regex v0.14.0\n    Checking email_address v0.2.9\n    Checking num-cmp v0.1.0\n    Checking unarray v0.1.4\n    Checking bytecount v0.6.8\n    Checking base64 v0.22.1\n    Checking proptest v1.9.0\n    Checking jsonschema v0.30.0\n    Checking emojis v0.6.4\n    Checking radicle-schemars v0.6.0 (/ci/src/crates/radicle-schemars)\n    Checking radicle-windows v0.1.0 (/ci/src/crates/radicle-windows)\n    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 30s\n",
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 664840029
      },
      "log_source": "Plan"
    }
  44. {
      "type": "action_succeeded",
      "action": "cargo_clippy",
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 852602690
      },
      "log_source": "Plan"
    }
  45. {
      "type": "execute_action",
      "action": "cargo_build",
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 854570504
      },
      "log_source": "Plan"
    }
  46. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 856518033
      },
      "log_source": "Plan"
    }
  47. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.90.0 (840b83a10 2025-07-30)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 908616990
      },
      "log_source": "Plan"
    }
  48. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957912,
        "nanos_since_epoch": 908661743
      },
      "log_source": "Plan"
    }
  49. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.90 (1159e78c47 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957913,
        "nanos_since_epoch": 3212467
      },
      "log_source": "Plan"
    }
  50. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957913,
        "nanos_since_epoch": 3255183
      },
      "log_source": "Plan"
    }
  51. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.90.0 (1159e78c4 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773957913,
        "nanos_since_epoch": 53600256
      },
      "log_source": "Plan"
    }
  52. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            98,
            117,
            105,
            108,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            97,
            108,
            108,
            45,
            116,
            97,
            114,
            103,
            101,
            116,
            115
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773957913,
        "nanos_since_epoch": 53645463
      },
      "log_source": "Plan"
    }
  53. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "   Compiling libc v0.2.182\n   Compiling cfg-if v1.0.0\n   Compiling memchr v2.7.2\n   Compiling shlex v1.3.0\n   Compiling jobserver v0.1.31\n   Compiling getrandom v0.2.15\n   Compiling regex-syntax v0.8.5\n   Compiling cc v1.2.2\n   Compiling aho-corasick v1.1.3\n   Compiling regex-automata v0.4.9\n   Compiling typenum v1.17.0\n   Compiling generic-array v0.14.7\n   Compiling rand_core v0.6.4\n   Compiling serde_core v1.0.228\n   Compiling crypto-common v0.1.6\n   Compiling bstr v1.12.0\n   Compiling smallvec v1.15.1\n   Compiling serde v1.0.228\n   Compiling subtle v2.5.0\n   Compiling thiserror v2.0.18\n   Compiling fastrand v2.3.0\n   Compiling stable_deref_trait v1.2.0\n   Compiling cpufeatures v0.2.12\n   Compiling scopeguard v1.2.0\n   Compiling parking_lot_core v0.9.12\n   Compiling lock_api v0.4.14\n   Compiling block-buffer v0.10.4\n   Compiling parking_lot v0.12.5\n   Compiling digest v0.10.7\n   Compiling bitflags v2.9.1\n   Compiling byteorder v1.5.0\n   Compiling tinyvec_macros v0.1.1\n   Compiling tinyvec v1.6.0\n   Compiling gix-trace v0.1.18\n   Compiling gix-validate v0.11.0\n   Compiling gix-path v0.11.1\n   Compiling unicode-normalization v0.1.23\n   Compiling crc32fast v1.5.0\n   Compiling itoa v1.0.17\n   Compiling same-file v1.0.6\n   Compiling gix-utils v0.3.1\n   Compiling walkdir v2.5.0\n   Compiling typeid v1.0.3\n   Compiling prodash v31.0.0\n   Compiling zlib-rs v0.6.0\n   Compiling erased-serde v0.4.6\n   Compiling hash32 v0.3.1\n   Compiling serde_fmt v1.0.3\n   Compiling value-bag-serde1 v1.11.1\n   Compiling heapless v0.8.0\n   Compiling faster-hex v0.10.0\n   Compiling value-bag v1.11.1\n   Compiling log v0.4.27\n   Compiling sha1 v0.10.6\n   Compiling zeroize v1.7.0\n   Compiling sha1-checked v0.10.0\n   Compiling gix-features v0.46.1\n   Compiling zerofrom v0.1.6\n   Compiling getrandom v0.3.3\n   Compiling yoke v0.7.5\n   Compiling gix-hash v0.22.1\n   Compiling linux-raw-sys v0.11.0\n   Compiling zerovec v0.10.4\n   Compiling block-padding v0.3.3\n   Compiling once_cell v1.21.3\n   Compiling inout v0.1.3\n   Compiling rustix v1.1.3\n   Compiling cipher v0.4.4\n   Compiling tinystr v0.7.6\n   Compiling writeable v0.5.5\n   Compiling litemap v0.7.5\n   Compiling icu_locid v1.5.0\n   Compiling percent-encoding v2.3.1\n   Compiling icu_provider v1.5.0\n   Compiling icu_locid_transform_data v1.5.1\n   Compiling icu_locid_transform v1.5.0\n   Compiling icu_properties_data v1.5.1\n   Compiling icu_collections v1.5.0\n   Compiling hashbrown v0.14.3\n   Compiling equivalent v1.0.1\n   Compiling icu_properties v1.5.1\n   Compiling indexmap v2.2.6\n   Compiling icu_normalizer_data v1.5.1\n   Compiling sha2 v0.10.8\n   Compiling write16 v1.0.0\n   Compiling utf16_iter v1.0.5\n   Compiling ryu v1.0.17\n   Compiling utf8_iter v1.0.4\n   Compiling libz-sys v1.1.16\n   Compiling serde_json v1.0.140\n   Compiling icu_normalizer v1.5.0\n   Compiling thiserror v1.0.69\n   Compiling tempfile v3.25.0\n   Compiling universal-hash v0.5.1\n   Compiling opaque-debug v0.3.1\n   Compiling ref-cast v1.0.24\n   Compiling idna_adapter v1.2.0\n   Compiling dyn-clone v1.0.17\n   Compiling idna v1.0.3\n   Compiling libgit2-sys v0.18.3+1.9.2\n   Compiling signature v1.6.4\n   Compiling ed25519 v1.5.3\n   Compiling form_urlencoded v1.2.1\n   Compiling aead v0.5.2\n   Compiling ascii v1.1.0\n   Compiling ct-codecs v1.1.1\n   Compiling amplify_num v0.5.2\n   Compiling amplify v4.6.0\n   Compiling ec25519 v0.1.0\n   Compiling url v2.5.4\n   Compiling num-traits v0.2.19\n   Compiling poly1305 v0.8.0\n   Compiling git-ref-format-core v0.6.0\n   Compiling chacha20 v0.9.1\n   Compiling schemars v1.0.4\n   Compiling cyphergraphy v0.3.0\n   Compiling polyval v0.6.2\n   Compiling sqlite3-src v0.7.0\n   Compiling hmac v0.12.1\n   Compiling keccak v0.1.6\n   Compiling base64ct v1.6.0\n   Compiling pem-rfc7468 v0.7.0\n   Compiling sha3 v0.10.8\n   Compiling pbkdf2 v0.12.2\n   Compiling ghash v0.5.1\n   Compiling aes v0.8.4\n   Compiling ctr v0.9.2\n   Compiling rand v0.8.5\n   Compiling base32 v0.4.0\n   Compiling cypheraddr v0.4.0\n   Compiling qcheck v1.0.0\n   Compiling aes-gcm v0.10.3\n   Compiling ssh-encoding v0.2.0\n   Compiling chacha20poly1305 v0.10.1\n   Compiling blowfish v0.9.1\n   Compiling cbc v0.1.2\n   Compiling data-encoding v2.5.0\n   Compiling jiff v0.2.20\n   Compiling data-encoding-macro v0.1.14\n   Compiling ssh-cipher v0.2.0\n   Compiling bcrypt-pbkdf v0.10.0\n   Compiling noise-framework v0.4.0\n   Compiling sqlite3-sys v0.18.0\n   Compiling socks5-client v0.4.1\n   Compiling signature v2.2.0\n   Compiling base-x v0.2.11\n   Compiling multibase v0.9.1\n   Compiling ssh-key v0.6.6\n   Compiling cyphernet v0.5.2\n   Compiling sqlite v0.37.0\n   Compiling radicle-ssh v0.10.0 (/ci/src/crates/radicle-ssh)\n   Compiling crossbeam-utils v0.8.19\n   Compiling winnow v0.7.14\n   Compiling crossbeam-channel v0.5.15\n   Compiling radicle-crypto v0.16.0 (/ci/src/crates/radicle-crypto)\n   Compiling hashbrown v0.16.1\n   Compiling lazy_static v1.5.0\n   Compiling gix-hashtable v0.12.0\n   Compiling nonempty v0.9.0\n   Compiling anstyle-query v1.0.2\n   Compiling siphasher v1.0.1\n   Compiling radicle-dag v0.10.0 (/ci/src/crates/radicle-dag)\n   Compiling radicle-git-metadata v0.2.0 (/ci/src/crates/radicle-git-metadata)\n   Compiling gix-error v0.1.0\n   Compiling memmap2 v0.9.8\n   Compiling utf8parse v0.2.2\n   Compiling anstyle-parse v0.2.3\n   Compiling radicle-git-ref-format v0.1.0 (/ci/src/crates/radicle-git-ref-format)\n   Compiling colorchoice v1.0.0\n   Compiling is_terminal_polyfill v1.70.2\n   Compiling anstyle v1.0.13\n   Compiling iana-time-zone v0.1.60\n   Compiling base64 v0.21.7\n   Compiling chrono v0.4.38\n   Compiling anstream v0.6.21\n   Compiling colored v2.1.0\n   Compiling radicle-localtime v0.1.0 (/ci/src/crates/radicle-localtime)\n   Compiling serde-untagged v0.1.7\n   Compiling bytesize v2.0.1\n   Compiling gix-error v0.0.0\n   Compiling tree-sitter-language v0.1.2\n   Compiling fast-glob v0.3.3\n   Compiling dunce v1.0.5\n   Compiling gix-date v0.14.0\n   Compiling adler2 v2.0.0\n   Compiling gix-actor v0.39.0\n   Compiling gix-date v0.13.0\n   Compiling git2 v0.20.4\n   Compiling gix-fs v0.19.1\n   Compiling gix-tempfile v21.0.1\n   Compiling gix-actor v0.38.0\n   Compiling gix-object v0.56.0\n   Compiling radicle-oid v0.1.0 (/ci/src/crates/radicle-oid)\n   Compiling radicle-core v0.2.0 (/ci/src/crates/radicle-core)\n   Compiling radicle-cob v0.19.0 (/ci/src/crates/radicle-cob)\n   Compiling gix-chunk v0.6.0\n   Compiling mio v1.0.4\n   Compiling radicle v0.22.0 (/ci/src/crates/radicle)\n   Compiling gix-quote v0.6.2\n   Compiling gix-commitgraph v0.33.0\n   Compiling gix-object v0.55.0\n   Compiling gix-chunk v0.5.0\n   Compiling errno v0.3.13\n   Compiling sem_safe v0.2.0\n   Compiling either v1.11.0\n   Compiling shell-words v1.1.0\n   Compiling unicode-segmentation v1.11.0\n   Compiling gix-command v0.7.1\n   Compiling signals_receipts v0.2.0\n   Compiling gix-commitgraph v0.32.0\n   Compiling gix-revwalk v0.27.0\n   Compiling gix-revwalk v0.26.0\n   Compiling gix-lock v21.0.1\n   Compiling gix-url v0.35.1\n   Compiling gix-config-value v0.17.1\n   Compiling gix-sec v0.13.1\n   Compiling signal-hook-registry v1.4.5\n   Compiling gimli v0.32.3\n   Compiling addr2line v0.25.1\n   Compiling signal-hook v0.3.18\n   Compiling gix-prompt v0.13.1\n   Compiling gix-traverse v0.52.0\n   Compiling object v0.37.3\n   Compiling gix-revision v0.41.0\n   Compiling radicle-signals v0.11.0 (/ci/src/crates/radicle-signals)\n   Compiling gix-diff v0.58.0\n   Compiling miniz_oxide v0.8.8\n   Compiling gix-glob v0.24.0\n   Compiling mio v0.8.11\n   Compiling gix-packetline v0.21.1\n   Compiling tree-sitter v0.24.4\n   Compiling rustc-demangle v0.1.26\n   Compiling backtrace v0.3.76\n   Compiling rustix v0.38.34\n   Compiling gix-transport v0.54.0\n   Compiling signal-hook-mio v0.2.4\n   Compiling gix-refspec v0.37.0\n   Compiling gix-pack v0.65.0\n   Compiling arc-swap v1.8.2\n   Compiling gix-credentials v0.36.0\n   Compiling gix-ref v0.59.0\n   Compiling gix-shallow v0.8.1\n   Compiling gix-negotiate v0.27.0\n   Compiling convert_case v0.7.1\n   Compiling regex v1.11.1\n   Compiling gix-protocol v0.57.0\n   Compiling derive_more-impl v2.0.1\n   Compiling gix-odb v0.75.0\n   Compiling xattr v1.3.1\n   Compiling uuid v1.20.0\n   Compiling filetime v0.2.23\n   Compiling bitflags v1.3.2\n   Compiling bytes v1.11.1\n   Compiling unicode-width v0.2.1\n   Compiling console v0.16.0\n   Compiling crossterm v0.25.0\n   Compiling tar v0.4.40\n   Compiling git-ref-format-macro v0.6.0\n   Compiling flate2 v1.1.1\n   Compiling derive_more v2.0.1\n   Compiling anyhow v1.0.82\n   Compiling portable-atomic v1.11.0\n   Compiling newline-converter v0.3.0\n   Compiling snapbox-macros v0.3.8\n   Compiling salsa20 v0.10.2\n   Compiling fxhash v0.2.1\n   Compiling siphasher v0.3.11\n   Compiling similar v2.5.0\n   Compiling normalize-line-endings v0.3.0\n   Compiling strsim v0.11.1\n   Compiling clap_lex v0.7.5\n   Compiling unit-prefix v0.5.1\n   Compiling streaming-iterator v0.1.9\n   Compiling unicode-width v0.1.11\n   Compiling inquire v0.7.5\n   Compiling indicatif v0.18.0\n   Compiling clap_builder v4.5.44\n   Compiling snapbox v0.4.17\n   Compiling bloomy v1.2.0\n   Compiling scrypt v0.11.0\n   Compiling radicle-surf v0.27.0\n   Compiling crossterm v0.29.0\n   Compiling git-ref-format v0.6.0\n   Compiling radicle-fetch v0.18.0 (/ci/src/crates/radicle-fetch)\n   Compiling unicode-display-width v0.3.0\n   Compiling systemd-journal-logger v2.2.2\n   Compiling toml_datetime v0.7.5+spec-1.1.0\n   Compiling serde_spanned v1.0.4\n   Compiling tree-sitter-go v0.23.4\n   Compiling tree-sitter-html v0.23.2\n   Compiling tree-sitter-json v0.24.8\n   Compiling tree-sitter-rust v0.23.2\n   Compiling tree-sitter-md v0.3.2\n   Compiling tree-sitter-c v0.23.2\n   Compiling tree-sitter-toml-ng v0.6.0\n   Compiling tree-sitter-css v0.23.1\n   Compiling tree-sitter-bash v0.23.3\n   Compiling tree-sitter-ruby v0.23.1\n   Compiling tree-sitter-typescript v0.23.2\n   Compiling tree-sitter-python v0.23.4\n   Compiling toml_writer v1.0.6+spec-1.1.0\n   Compiling pin-project-lite v0.2.16\n   Compiling radicle-std-ext v0.2.0\n   Compiling radicle-git-ext v0.12.0\n   Compiling tokio v1.47.1\n   Compiling toml v0.9.12+spec-1.1.0\n   Compiling clap v4.5.44\n   Compiling sysinfo v0.37.2\n   Compiling yansi v0.5.1\n   Compiling diff v0.1.13\n   Compiling radicle-cli v0.19.0 (/ci/src/crates/radicle-cli)\n   Compiling radicle-node v0.18.0 (/ci/src/crates/radicle-node)\n   Compiling pretty_assertions v1.4.0\n   Compiling human-panic v2.0.6\n   Compiling clap_complete v4.5.60\n   Compiling structured-logger v1.0.4\n   Compiling radicle-protocol v0.6.0 (/ci/src/crates/radicle-protocol)\n   Compiling radicle-systemd v0.12.0 (/ci/src/crates/radicle-systemd)\n   Compiling radicle-term v0.17.0 (/ci/src/crates/radicle-term)\n   Compiling tree-sitter-highlight v0.24.4\n   Compiling itertools v0.14.0\n   Compiling num-integer v0.1.46\n   Compiling socket2 v0.5.7\n   Compiling lexopt v0.3.0\n   Compiling timeago v0.4.2\n   Compiling humantime v2.3.0\n   Compiling bit-vec v0.8.0\n   Compiling bit-set v0.8.0\n   Compiling escargot v0.5.10\n   Compiling num-bigint v0.4.6\n   Compiling rand_core v0.9.3\n   Compiling num-rational v0.4.2\n   Compiling num-iter v0.1.45\n   Compiling num-complex v0.4.6\n   Compiling env_filter v0.1.3\n   Compiling zerocopy v0.7.35\n   Compiling borrow-or-share v0.2.2\n   Compiling fluent-uri v0.3.2\n   Compiling ahash v0.8.11\n   Compiling env_logger v0.11.8\n   Compiling num v0.4.3\n   Compiling radicle-cli-test v0.13.0 (/ci/src/crates/radicle-cli-test)\n   Compiling phf_shared v0.11.3\n   Compiling wait-timeout v0.2.1\n   Compiling quick-error v1.2.3\n   Compiling radicle-remote-helper v0.15.0 (/ci/src/crates/radicle-remote-helper)\n   Compiling outref v0.5.2\n   Compiling fnv v1.0.7\n   Compiling ppv-lite86 v0.2.17\n   Compiling vsimd v0.8.0\n   Compiling rand_chacha v0.9.0\n   Compiling rusty-fork v0.3.1\n   Compiling uuid-simd v0.8.0\n   Compiling test-log v0.2.19\n   Compiling phf v0.11.3\n   Compiling fraction v0.15.3\n   Compiling referencing v0.30.0\n   Compiling rand v0.9.2\n   Compiling rand_xorshift v0.4.0\n   Compiling fancy-regex v0.14.0\n   Compiling email_address v0.2.9\n   Compiling unarray v0.1.4\n   Compiling num-cmp v0.1.0\n   Compiling bytecount v0.6.8\n   Compiling base64 v0.22.1\n   Compiling jsonschema v0.30.0\n   Compiling proptest v1.9.0\n   Compiling emojis v0.6.4\n   Compiling radicle-schemars v0.6.0 (/ci/src/crates/radicle-schemars)\n   Compiling radicle-windows v0.1.0 (/ci/src/crates/radicle-windows)\n    Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 26s\n",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 32192012
      },
      "log_source": "Plan"
    }
  54. {
      "type": "action_succeeded",
      "action": "cargo_build",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 186863732
      },
      "log_source": "Plan"
    }
  55. {
      "type": "execute_action",
      "action": "cargo_test",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 187036951
      },
      "log_source": "Plan"
    }
  56. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 187047394
      },
      "log_source": "Plan"
    }
  57. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.90.0 (840b83a10 2025-07-30)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 226791286
      },
      "log_source": "Plan"
    }
  58. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 229484028
      },
      "log_source": "Plan"
    }
  59. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.90 (1159e78c47 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 320257565
      },
      "log_source": "Plan"
    }
  60. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 322959069
      },
      "log_source": "Plan"
    }
  61. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.90.0 (1159e78c4 2025-09-14)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 369080293
      },
      "log_source": "Plan"
    }
  62. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            116,
            101,
            115,
            116
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1773958060,
        "nanos_since_epoch": 369126117
      },
      "log_source": "Plan"
    }
  63. {
      "type": "program_failed",
      "exit_code": 101,
      "stdout": "\nrunning 327 tests\ntest canonical::formatter::test::ascii_control_characters ... ok\ntest canonical::formatter::test::ordered_nested_object ... ok\ntest canonical::formatter::test::securesystemslib_asserts ... ok\ntest cob::cache::migrations::_2::tests::test_migration_2 ... ok\ntest cob::cache::migrations::_2::tests::test_patch_json_deserialization ... ok\ntest cob::cache::tests::test_check_version ... ok\ntest cob::cache::tests::test_migrate_to ... ok\ntest cob::common::test::test_color ... ok\ntest cob::common::test::test_emojis ... ok\ntest cob::common::test::test_title ... ok\ntest cob::identity::test::prop_json_eq_str ... ok\ntest cob::identity::test::test_identity_redact_revision ... ok\ntest cob::identity::test::test_identity_reject_concurrent ... ok\ntest cob::identity::test::test_identity_remove_delegate_concurrent ... ok\ntest cob::identity::test::test_identity_update_rejected ... ok\ntest cob::identity::test::test_identity_updates ... ok\ntest cob::identity::test::test_identity_updates_concurrent ... ok\ntest cob::identity::test::test_identity_updates_concurrent_outdated ... ok\ntest cob::issue::cache::tests::test_counts ... ok\ntest cob::issue::cache::tests::test_get ... ok\ntest cob::issue::cache::tests::test_is_empty ... ok\ntest cob::issue::cache::tests::test_list ... ok\ntest cob::issue::cache::tests::test_list_by_status ... ok\ntest cob::identity::test::test_valid_identity ... ok\ntest cob::issue::cache::tests::test_remove ... ok\ntest cob::issue::test::test_embeds ... ok\ntest cob::issue::test::test_embeds_edit ... ok\ntest cob::issue::test::test_invalid_actions ... ok\ntest cob::issue::test::test_concurrency ... ok\ntest cob::issue::test::test_invalid_cob ... ok\ntest cob::issue::test::test_invalid_tx ... ok\ntest cob::issue::test::test_invalid_tx_reference ... ok\ntest cob::issue::test::test_issue_all ... ok\ntest cob::issue::test::test_issue_comment ... ok\ntest cob::issue::test::test_issue_comment_redact ... ok\ntest cob::issue::test::test_issue_create_and_assign ... ok\ntest cob::issue::test::test_issue_create_and_get ... ok\ntest cob::issue::test::test_issue_create_and_change_state ... ok\ntest cob::issue::test::test_issue_create_and_unassign ... ok\ntest cob::issue::test::test_issue_create_and_reassign ... ok\ntest cob::issue::test::test_issue_edit ... ok\ntest cob::issue::test::test_issue_edit_description ... ok\ntest cob::issue::test::test_issue_multilines ... ok\ntest cob::issue::test::test_issue_label ... ok\ntest cob::issue::test::test_issue_react ... ok\ntest cob::issue::test::test_issue_state_serde ... ok\ntest cob::issue::test::test_ordering ... ok\ntest cob::patch::actions::test::test_review_edit ... ok\ntest cob::issue::test::test_issue_reply ... ok\ntest cob::patch::cache::tests::test_counts ... ok\ntest cob::patch::cache::tests::test_get ... ok\ntest cob::patch::cache::tests::test_is_empty ... ok\ntest cob::patch::cache::tests::test_list ... ok\ntest cob::patch::cache::tests::test_list_by_status ... ok\ntest cob::patch::cache::tests::test_find_by_revision ... ok\ntest cob::patch::encoding::review::test::test_review_deserialize_summary_migration_null_summary ... ok\ntest cob::patch::encoding::review::test::test_review_deserialize_summary_migration_with_summary ... ok\ntest cob::patch::encoding::review::test::test_review_deserialize_summary_migration_without_summary ... ok\ntest cob::patch::encoding::review::test::test_review_deserialize_summary_v2 ... ok\ntest cob::patch::encoding::review::test::test_review_summary ... ok\ntest cob::patch::test::test_json ... ok\ntest cob::patch::test::test_json_serialization ... ok\ntest cob::patch::test::test_patch_create_and_get ... ok\ntest cob::patch::cache::tests::test_remove ... ok\ntest cob::patch::test::test_patch_discussion ... ok\ntest cob::patch::test::test_patch_merge ... ok\ntest cob::patch::test::test_patch_redact ... ok\ntest cob::patch::test::test_patch_review ... ok\ntest cob::patch::test::test_patch_review_comment ... ok\ntest cob::patch::test::test_patch_review_duplicate ... ok\ntest cob::patch::test::test_patch_review_edit ... ok\ntest cob::patch::test::test_patch_review_edit_comment ... ok\ntest cob::patch::test::test_patch_review_remove_summary ... ok\ntest cob::patch::test::test_patch_review_revision_redact ... ok\ntest cob::patch::test::test_reactions_json_serialization ... ok\ntest cob::patch::test::test_revision_edit_redact ... ok\ntest cob::patch::test::test_revision_reaction ... ok\ntest cob::patch::test::test_revision_review_merge_redacted ... ok\ntest cob::stream::tests::test_all_from ... ok\ntest cob::stream::tests::test_all_from_until ... ok\ntest cob::stream::tests::test_all_until ... ok\ntest cob::stream::tests::test_from_until ... ok\ntest cob::stream::tests::test_regression_from_until ... ok\ntest cob::patch::test::test_patch_update ... ok\ntest cob::thread::tests::test_comment_edit_missing ... ok\ntest cob::thread::tests::test_comment_edit_redacted ... ok\ntest cob::thread::tests::test_comment_redact_missing ... ok\ntest cob::thread::tests::test_duplicate_comments ... ok\ntest cob::thread::tests::test_edit_comment ... ok\ntest cob::thread::tests::test_redact_comment ... ok\ntest cob::thread::tests::test_timeline ... ok\ntest git::canonical::protect::tests::refs_rad ... ok\ntest git::canonical::protect::tests::refs_rad_id ... ok\ntest git::canonical::protect::tests::refs_radieschen ... ok\ntest git::canonical::quorum::test::merge_base_commutative ... ok\ntest git::canonical::quorum::test::test_merge_bases ... ok\ntest git::canonical::rules::tests::test_canonical ... ok\ntest git::canonical::rules::tests::test_deserialization ... ok\ntest git::canonical::rules::tests::test_deserialize_extensions ... ok\ntest git::canonical::rules::tests::test_order ... ok\ntest git::canonical::rules::tests::test_roundtrip ... ok\ntest git::canonical::rules::tests::test_rule_validate_failures ... ok\ntest git::canonical::rules::tests::test_rule_validate_success ... ok\ntest git::canonical::rules::tests::test_special_branches ... ok\ntest git::canonical::symbolic::test::deserialize_infinite ... ok\ntest git::canonical::symbolic::test::deserialize_valid ... ok\ntest git::canonical::symbolic::test::infinite_extend ... ok\ntest git::canonical::symbolic::test::infinite_multi ... ok\ntest git::canonical::symbolic::test::infinite_single ... ok\ntest git::canonical::tests::test_commit_quorum_fork_of_a_fork ... ok\ntest git::canonical::tests::test_commit_quorum_forked_merge_commits ... ok\ntest git::canonical::tests::test_commit_quorum_groups ... ok\ntest git::canonical::tests::test_commit_quorum_linear ... ok\ntest git::canonical::tests::test_commit_quorum_merges ... ok\ntest git::canonical::tests::test_commit_quorum_single ... ok\ntest git::canonical::tests::test_commit_quorum_three_way_fork ... ok\ntest git::canonical::tests::test_commit_quorum_two_way_fork ... ok\ntest git::canonical::tests::test_quorum_different_types ... ok\ntest cob::thread::tests::prop_ordering ... ok\ntest git::canonical::tests::test_tag_quorum ... ok\ntest git::test::test_version_from_str ... ok\ntest git::test::test_version_ord ... ok\ntest identity::crefs::tests::invalid_clash ... ok\ntest identity::crefs::tests::invalid_clash_asterisk_name ... ok\ntest identity::crefs::tests::invalid_dangling ... ok\ntest identity::crefs::tests::omit_symbolic ... ok\ntest identity::crefs::tests::valid ... ok\ntest identity::crefs::tests::valid_asterisk_target ... ok\ntest identity::did::test::test_did_encode_decode ... ok\ntest identity::did::test::test_did_vectors ... ok\ntest git::canonical::tests::test_quorum_properties ... ok\ntest identity::doc::test::test_canonical_doc ... ok\ntest identity::doc::test::test_canonical_example ... ok\ntest identity::doc::test::test_default_branch_without_project ... ok\ntest identity::doc::test::test_duplicate_dids ... ok\ntest identity::doc::test::test_future_version_error ... ok\ntest identity::doc::test::test_is_valid_version ... ok\ntest identity::doc::test::test_max_delegates ... ok\ntest identity::doc::test::test_not_found ... ok\ntest identity::doc::test::test_parse_version ... ok\ntest identity::doc::test::test_visibility_json ... ok\ntest identity::doc::update::test::test_can_update_crefs ... ok\ntest identity::doc::update::test::test_cannot_include_default_branch_rule ... ok\ntest identity::doc::update::test::test_default_branch_rule_exists_after_verification ... ok\ntest identity::project::test::test_project_name ... ok\ntest node::address::store::test::test_alias ... ok\ntest node::address::store::test::test_disconnected ... ok\ntest node::address::store::test::test_disconnected_ban ... ok\ntest node::address::store::test::test_empty ... ok\ntest node::address::store::test::test_entries ... ok\ntest node::address::store::test::test_get_none ... ok\ntest node::address::store::test::test_insert_and_get ... ok\ntest node::address::store::test::test_insert_and_remove ... ok\ntest node::address::store::test::test_insert_and_update ... ok\ntest node::address::store::test::test_insert_duplicate ... ok\ntest node::address::store::test::test_node_aliases ... ok\ntest node::address::store::test::test_remove_nothing ... ok\ntest node::command::test::command_result ... ok\ntest node::config::test::deserialize_migrating_scope ... ok\ntest node::config::test::partial ... ok\ntest node::config::test::regression_ipv6_address_brackets ... ok\ntest node::config::test::regression_ipv6_address_no_brackets ... ok\ntest node::config::test::serialize_migrating_scope ... ok\ntest node::db::config::test::database_config_valid_combinations ... ok\ntest node::db::config::test::invalid ... ok\ntest node::db::test::migration_8::all_ipv6_formatted_dns_addresses_are_retyped ... ok\ntest node::db::test::migration_8::dns_address_starting_with_bracket_but_missing_closing_bracket_colon_is_unaffected ... ok\ntest node::db::test::migration_8::dns_address_with_bracket_not_at_start_is_unaffected ... ok\ntest node::db::test::migration_8::ipv4_address_is_unaffected ... ok\ntest node::db::test::migration_8::ipv6_formatted_dns_address_is_deleted_when_correct_ipv6_row_already_exists ... ok\ntest node::db::test::migration_8::ipv6_formatted_dns_address_is_retyped_to_ipv6 ... ok\ntest node::db::test::migration_8::migration_applies_to_all_nodes ... ok\ntest node::db::test::migration_8::plain_dns_hostname_without_brackets_is_unaffected ... ok\ntest node::db::test::migration_8::retype_preserves_address_metadata ... ok\ntest node::db::test::test_version ... ok\ntest node::features::test::test_operations ... ok\ntest node::notifications::store::test::test_branch_notifications ... ok\ntest node::notifications::store::test::test_clear ... ok\ntest node::notifications::store::test::test_cob_notifications ... ok\ntest node::notifications::store::test::test_counts_by_repo ... ok\ntest node::notifications::store::test::test_duplicate_notifications ... ok\ntest node::notifications::store::test::test_notification_status ... ok\ntest node::policy::store::test::test_follow_and_unfollow_node ... ok\ntest node::policy::store::test::test_node_aliases ... ok\ntest node::policy::store::test::test_node_policies ... ok\ntest node::policy::store::test::test_node_policy ... ok\ntest node::policy::store::test::test_repo_policies ... ok\ntest node::policy::store::test::test_repo_policy ... ok\ntest node::policy::store::test::test_seed_and_unseed_repo ... ok\ntest node::policy::store::test::test_update_alias ... ok\ntest node::policy::store::test::test_update_scope ... ok\ntest node::refs::store::test::test_count ... ok\ntest node::refs::store::test::test_set_and_delete ... ok\ntest node::refs::store::test::test_set_and_get ... ok\ntest node::routing::test::test_count ... ok\ntest node::routing::test::test_entries ... ok\ntest node::routing::test::test_insert_and_get ... ok\ntest node::routing::test::test_insert_and_get_resources ... ok\ntest node::routing::test::test_insert_and_remove ... ok\ntest node::routing::test::test_insert_duplicate ... ok\ntest node::routing::test::test_insert_existing_updated_time ... ok\ntest node::routing::test::test_len ... ok\ntest node::routing::test::test_prune ... ok\ntest node::routing::test::test_remove_many ... ok\ntest node::routing::test::test_remove_redundant ... ok\ntest node::routing::test::test_update_existing_multi ... ok\ntest node::sync::announce::test::all_synced_nodes_are_preferred_seeds ... ok\ntest node::sync::announce::test::announcer_adapts_target_to_reach ... ok\ntest node::sync::announce::test::announcer_preferred_seeds_or_replica_factor ... ok\ntest node::sync::announce::test::announcer_reached_max_replication_target ... ok\ntest node::sync::announce::test::announcer_reached_min_replication_target ... ok\ntest node::sync::announce::test::announcer_reached_preferred_seeds ... ok\ntest node::sync::announce::test::announcer_synced_with_unknown_node ... ok\ntest node::sync::announce::test::announcer_timed_out ... ok\ntest node::sync::announce::test::announcer_with_replication_factor_zero_and_preferred_seeds ... ok\ntest node::sync::announce::test::cannot_construct_announcer ... ok\ntest node::sync::announce::test::construct_node_appears_in_multiple_input_sets ... ok\ntest node::sync::announce::test::construct_only_preferred_seeds_provided ... ok\ntest node::sync::announce::test::invariant_progress_should_match_state ... ok\ntest node::sync::announce::test::local_node_in_multiple_sets ... ok\ntest node::sync::announce::test::local_node_in_preferred_seeds ... ok\ntest node::sync::announce::test::local_node_in_synced_set ... ok\ntest node::sync::announce::test::local_node_in_unsynced_set ... ok\ntest node::sync::announce::test::local_node_only_in_all_sets_results_in_no_seeds_error ... ok\ntest node::sync::announce::test::preferred_seeds_already_synced ... ok\ntest node::sync::announce::test::synced_with_local_node_is_ignored ... ok\ntest node::sync::announce::test::synced_with_same_node_multiple_times ... ok\ntest node::sync::announce::test::timed_out_after_reaching_success ... ok\ntest node::sync::fetch::test::all_nodes_are_candidates ... ok\ntest node::sync::fetch::test::all_nodes_are_fetchable ... ok\ntest node::sync::fetch::test::could_not_reach_target ... ok\ntest node::sync::fetch::test::ignores_duplicates_and_local_node ... ok\ntest node::sync::fetch::test::preferred_seeds_target_returned_over_replicas ... ok\ntest node::sync::fetch::test::reaches_target_of_max_replicas ... ok\ntest node::sync::fetch::test::reaches_target_of_preferred_seeds ... ok\ntest node::sync::fetch::test::reaches_target_of_replicas ... ok\ntest node::sync::test::ensure_replicas_construction ... ok\ntest node::sync::test::replicas_constrain_to ... ok\ntest node::test::test_address ... ok\ntest node::test::test_alias ... ok\ntest node::test::test_command_result ... ok\ntest node::test::test_user_agent ... ok\ntest node::timestamp::tests::test_timestamp_max ... ok\ntest profile::config::test::schema ... ok\ntest profile::test::canonicalize_home ... ok\ntest profile::test::test_config ... ok\ntest rad::tests::test_checkout ... ok\ntest rad::tests::test_fork ... ok\ntest rad::tests::test_init ... ok\ntest storage::git::tests::test_references_of ... ok\ntest storage::git::tests::test_sign_refs ... ok\ntest storage::git::transport::local::url::test::test_url_parse ... ok\ntest storage::git::transport::local::url::test::test_url_to_string ... ok\ntest storage::git::transport::remote::url::test::test_url_parse ... ok\ntest storage::refs::sigrefs::property::idempotent ... ok\ntest identity::doc::test::prop_encode_decode ... ok\ntest storage::refs::sigrefs::read::test::commit_reader::identity_root_error ... ok\ntest storage::refs::sigrefs::read::test::commit_reader::missing_commit ... ok\ntest storage::refs::sigrefs::read::test::commit_reader::missing_identity ... ignored, strict verification of `refs/rad/root` reverted due to compatibility issues\ntest storage::refs::sigrefs::read::test::commit_reader::read_ok ... ok\ntest storage::refs::sigrefs::read::test::commit_reader::too_many_parents ... ok\ntest storage::refs::sigrefs::read::test::commit_reader::tree_error ... ok\ntest storage::refs::sigrefs::read::test::identity_root_reader::doc_blob_error ... ok\ntest storage::refs::sigrefs::read::test::identity_root_reader::missing_identity ... ok\ntest storage::refs::sigrefs::read::test::identity_root_reader::read_ok_none ... ok\ntest storage::refs::sigrefs::read::test::identity_root_reader::read_ok_some ... ok\ntest storage::refs::sigrefs::read::test::resolve_tip::find_reference_error ... ok\ntest storage::refs::sigrefs::read::test::resolve_tip::missing_sigrefs ... ok\ntest storage::refs::sigrefs::read::test::resolve_tip::resolve_tip_ok ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::head_commit_error ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::head_replays_root ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::head_verify_mismatched_identity_error ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::head_verify_signature_error ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::invalid_parent ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::multiple_replays ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::read_ok_no_parent ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::read_ok_parent ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::replay_chain ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::single_commit ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::two_commits ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::walk_commit_error ... ok\ntest storage::refs::sigrefs::read::test::signed_refs_reader::walk_verify_error ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::missing_both ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::missing_refs ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::missing_signature ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::parse_refs_error ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::parse_signature_error ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::read_ok ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::read_refs_error ... ok\ntest storage::refs::sigrefs::read::test::tree_reader::read_signature_error ... ok\ntest storage::refs::sigrefs::write::test::commit_writer::tree_error ... ok\ntest storage::refs::sigrefs::write::test::commit_writer::write_commit_error ... ok\ntest storage::refs::sigrefs::write::test::commit_writer::write_empty_refs ... ok\ntest storage::refs::sigrefs::write::test::commit_writer::write_root_ok ... ok\ntest storage::refs::sigrefs::write::test::commit_writer::write_with_parent_ok ... ok\ntest storage::refs::sigrefs::write::test::head_reader::no_head ... ok\ntest storage::refs::sigrefs::write::test::head_reader::read_ok ... ok\ntest storage::refs::sigrefs::write::test::head_reader::reference_error ... ok\ntest storage::refs::sigrefs::write::test::head_reader::refs_blob_error ... ok\ntest storage::refs::sigrefs::write::test::head_reader::refs_blob_missing ... ok\ntest storage::refs::sigrefs::write::test::head_reader::refs_parse_error ... ok\ntest storage::refs::sigrefs::write::test::head_reader::signature_blob_error ... ok\ntest storage::refs::sigrefs::write::test::head_reader::signature_blob_missing ... ok\ntest storage::refs::sigrefs::write::test::head_reader::signature_parse_error ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::commit_error ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::head_error ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::never_write_rad_sigrefs ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::reference_error ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::unchanged ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::write_empty_refs ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::write_root_ok ... ok\ntest storage::refs::sigrefs::write::test::signed_refs_writer::write_with_parent_ok ... ok\ntest storage::refs::sigrefs::write::test::tree_writer::sign_error ... ok\ntest storage::refs::sigrefs::write::test::tree_writer::write_ok ... ok\ntest storage::refs::sigrefs::write::test::tree_writer::write_tree_error ... ok\ntest storage::refs::tests::prop_canonical_roundtrip ... ok\ntest storage::refs::tests::test_rid_verification ... ok\ntest storage::tests::test_storage ... ok\ntest test::assert::test::assert_with_message ... ok\ntest test::assert::test::test_assert_no_move ... ok\ntest test::assert::test::test_assert_panic_0 - should panic ... ok\ntest test::assert::test::test_assert_panic_1 - should panic ... ok\ntest test::assert::test::test_assert_panic_2 - should panic ... ok\ntest test::assert::test::test_assert_succeed ... ok\ntest test::assert::test::test_panic_message ... ok\ntest version::test::test_version ... ok\ntest storage::refs::sigrefs::property::roundtrip ... ok\n\ntest result: ok. 326 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; finished in 8.62s\n\n\nrunning 46 tests\ntest commands::block::args::test::should_not_parse ... ok\ntest commands::block::args::test::should_parse_nid ... ok\ntest commands::block::args::test::should_parse_rid ... ok\ntest commands::clone::args::test::should_parse_rid_non_urn ... ok\ntest commands::clone::args::test::should_parse_rid_url ... ok\ntest commands::clone::args::test::should_parse_rid_urn ... ok\ntest commands::cob::args::test::should_allow_log_json_format ... ok\ntest commands::cob::args::test::should_allow_log_pretty_format ... ok\ntest commands::cob::args::test::should_allow_show_json_format ... ok\ntest commands::cob::args::test::should_allow_update_json_format ... ok\ntest commands::cob::args::test::should_not_allow_show_pretty_format ... ok\ntest commands::cob::args::test::should_not_allow_update_pretty_format ... ok\ntest commands::fork::args::test::should_not_parse_rid_url ... ok\ntest commands::fork::args::test::should_parse_rid_non_urn ... ok\ntest commands::fork::args::test::should_parse_rid_urn ... ok\ntest commands::id::args::test::should_not_parse_into_payload - should panic ... ok\ntest commands::id::args::test::should_not_clobber_payload_args ... ok\ntest commands::id::args::test::should_not_parse_single_payload ... ok\ntest commands::id::args::test::should_parse_into_payload ... ok\ntest commands::id::args::test::should_not_parse_single_payloads ... ok\ntest commands::id::args::test::should_parse_multiple_payloads ... ok\ntest commands::init::args::test::should_not_parse_rid_url ... ok\ntest commands::id::args::test::should_parse_single_payload ... ok\ntest commands::init::args::test::should_parse_rid_non_urn ... ok\ntest commands::init::args::test::should_parse_rid_urn ... ok\ntest commands::patch::review::builder::tests::test_review_comments_basic ... ok\ntest commands::inspect::test::test_tree ... ok\ntest commands::patch::review::builder::tests::test_review_comments_before ... ok\ntest commands::patch::review::builder::tests::test_review_comments_multiline ... ok\ntest commands::patch::review::builder::tests::test_review_comments_split_hunk ... ok\ntest commands::publish::args::test::should_not_parse_rid_url ... ok\ntest commands::publish::args::test::should_parse_rid_non_urn ... ok\ntest commands::publish::args::test::should_parse_rid_urn ... ok\ntest commands::watch::args::test::should_parse_ref_str ... ok\ntest git::pretty_diff::test::test_pretty ... ignored\ntest git::ddiff::tests::diff_encode_decode_ddiff_hunk ... ok\ntest git::unified_diff::test::test_diff_content_encode_decode_content ... ok\ntest terminal::args::test::should_not_parse ... ok\ntest git::unified_diff::test::test_diff_encode_decode_diff ... ok\ntest terminal::args::test::should_parse_nid ... ok\ntest terminal::args::test::should_parse_rid ... ok\ntest terminal::format::test::test_strip_comments ... ok\ntest terminal::format::test::test_bytes ... ok\ntest terminal::patch::test::test_edit_display_message ... ok\ntest terminal::patch::test::test_create_display_message ... ok\ntest terminal::patch::test::test_update_display_message ... ok\n\ntest result: ok. 45 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; finished in 0.01s\n\n\nrunning 0 tests\n\ntest result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\n\nrunning 115 tests\ntest commands::checkout::rad_checkout has been running for over 60 seconds\ntest commands::clone::rad_clone has been running for over 60 seconds\ntest commands::clone::rad_clone ... FAILED\ntest commands::checkout::rad_checkout ... ok\ntest commands::clone::rad_clone_bare ... FAILED\ntest commands::clone::rad_clone_all ... FAILED\ntest commands::clone::rad_clone_directory ... FAILED\ntest commands::clone::rad_clone_connect ... FAILED\ntest commands::clone::rad_clone_scope ... ok\ntest commands::clone::rad_clone_unknown ... ok\ntest commands::clone::rad_clone_partial_fail ... FAILED\ntest commands::clone::test_clone_without_seeds ... ok\ntest commands::cob::rad_cob_log ... ok\ntest commands::cob::rad_cob_migrate ... ok\ntest commands::cob::rad_cob_multiset ... ok\ntest commands::cob::rad_cob_operations ... ok\ntest commands::cob::rad_cob_show ... ok\ntest commands::cob::rad_cob_update_identity ... ok\ntest commands::cob::rad_cob_update ... ok\ntest commands::cob::test_cob_replication ... FAILED\ntest commands::cob::test_cob_deletion ... FAILED\ntest commands::git::git_push_amend ... FAILED\ntest commands::git::git_push_and_fetch ... FAILED\ntest commands::git::git_push_canonical_annotated_tags ... FAILED\ntest commands::git::git_push_canonical_lightweight_tags ... FAILED\ntest commands::git::git_push_diverge ... FAILED\ntest commands::git::git_push_converge ... FAILED\ntest commands::git::git_push_force_with_lease ... ok\ntest commands::git::git_push_rollback ... FAILED\ntest commands::git::git_tag ... FAILED\ntest commands::id::rad_id_collaboration ... ignored, slow\ntest commands::id::rad_id ... FAILED\ntest commands::id::rad_id_conflict ... FAILED\ntest commands::id::rad_id_private ... ok\ntest commands::id::rad_id_multi_delegate ... FAILED\ntest commands::id::rad_id_threshold ... FAILED\ntest commands::id::rad_id_threshold_soft_fork ... FAILED\ntest commands::id::rad_id_unknown_field ... ok\ntest commands::id::rad_id_unauthorized_delegate ... FAILED\ntest commands::id::rad_id_update_delete_field ... ok\ntest commands::init::rad_init ... ignored, part of many other tests\ntest commands::init::rad_init_bare ... ok\ntest commands::init::rad_init_detached_head ... ok\ntest commands::inbox::rad_inbox ... FAILED\ntest commands::init::rad_init_existing ... ok\ntest commands::init::rad_init_existing_bare ... ok\ntest commands::init::rad_init_no_git ... ok\ntest commands::init::rad_init_no_seed ... ok\ntest commands::init::rad_init_private ... ok\ntest commands::init::rad_init_private_clone ... ok\ntest commands::init::rad_init_private_clone_seed ... FAILED\ntest commands::init::rad_init_private_no_seed ... ok\ntest commands::init::rad_init_private_seed ... ok\ntest commands::init::rad_init_sync_not_connected ... ok\ntest commands::init::rad_init_sync_preferred ... ok\ntest commands::init::rad_init_sync_and_clone ... FAILED\ntest commands::init::rad_init_with_existing_remote ... ok\ntest commands::init::rad_publish ... ok\ntest commands::issue::rad_issue ... ok\ntest commands::init::rad_init_sync_timeout ... ok\ntest commands::jj::rad_jj_bare ... ok\ntest commands::jj::rad_jj_colocated_patch ... ok\ntest commands::issue::rad_issue_list ... ok\ntest commands::node::rad_node ... ok\ntest commands::node::rad_node_connect ... ok\ntest commands::patch::rad_merge_after_update ... ok\ntest commands::node::rad_node_connect_without_address ... ok\ntest commands::patch::rad_merge_no_ff ... ok\ntest commands::patch::rad_merge_via_push ... ok\ntest commands::patch::rad_patch ... ok\ntest commands::patch::rad_patch_ahead_behind ... ok\ntest commands::patch::rad_patch_checkout ... ok\ntest commands::patch::rad_patch_change_base ... ok\ntest commands::patch::rad_patch_checkout_revision ... ok\ntest commands::patch::rad_patch_checkout_force ... FAILED\ntest commands::patch::rad_patch_detached_head ... ok\ntest commands::patch::rad_patch_diff ... ok\ntest commands::patch::rad_patch_delete ... FAILED\ntest commands::patch::rad_patch_draft ... ok\ntest commands::patch::rad_patch_edit ... ok\ntest commands::patch::rad_patch_fetch_2 ... FAILED\ntest commands::patch::rad_patch_fetch_1 ... FAILED\ntest commands::patch::rad_patch_merge_draft ... ok\ntest commands::patch::rad_patch_open_explore ... ok\ntest commands::patch::rad_patch_revert_merge ... ok\ntest commands::patch::rad_patch_update ... ok\ntest commands::patch::rad_patch_via_push ... FAILED\ntest commands::patch::rad_patch_pull_update ... FAILED\ntest commands::patch::rad_push_and_pull_patches ... FAILED\ntest commands::patch::rad_review_by_hunk ... ok\ntest commands::policy::rad_block ... ok\ntest commands::policy::rad_seed_and_follow ... ok\ntest commands::policy::rad_seed_policy_allow_no_scope ... ok\ntest commands::policy::rad_seed_scope ... ok\ntest commands::policy::rad_seed_many ... ok\ntest commands::policy::rad_unseed ... ok\ntest commands::policy::rad_unseed_many ... ok\ntest commands::remote::rad_remote ... FAILED\ntest commands::sync::rad_fetch ... ok\ntest commands::sync::rad_sync_without_node ... ok\n1773958296 test: rad-init:6: `rad init --name heartwood --description Radicle Heartwood Protocol & Stack --no-confirm --public -v` @ /tmp/.tmpSxtDk3/working/acme\n1773958296 test: rad-init:28: `rad init` @ /tmp/.tmpSxtDk3/working/acme\n1773958296 test: rad-init:35: `rad ls` @ /tmp/.tmpSxtDk3/working/acme\n1773958296 test: rad-init:46: `rad node inventory` @ /tmp/.tmpSxtDk3/working/acme\n1773958296 commands::sync::rad_sync      node: Opening policy database..\n1773958296 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'\n1773958296 commands::sync::rad_sync      node: Initializing service (Test)..\n1773958296 commands::sync::rad_sync      node: Opening node database..\n1773958296 commands::sync::rad_sync   service: Init @1773958296732\n1773958296 commands::sync::rad_sync   service: Empty refs database, populating from storage..\n1773958296 commands::sync::rad_sync   service: Saved local sync status for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..\n1773958296 commands::sync::rad_sync   service: Adding refs announcement for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to historical gossip messages..\n1773958296 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)\n1773958296 commands::sync::rad_sync reactor-controller: Initializing reactor thread...\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Entering reactor event loop\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           node: Listening on 127.0.0.1:40633..\n1773958296 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/alice/.radicle/node/control.sock..\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <runtime>           node: Running node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi in /tmp/.tmpSxtDk3/alice/.radicle..\n1773958296 commands::sync::rad_sync      node: Opening policy database..\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Control thread listening on socket..\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)\n1773958296 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel\n1773958296 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'\n1773958296 commands::sync::rad_sync      node: Initializing service (Test)..\n1773958296 commands::sync::rad_sync      node: Opening node database..\n1773958296 commands::sync::rad_sync   service: Init @1773958296821\n1773958296 commands::sync::rad_sync   service: Empty refs database, populating from storage..\n1773958296 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)\n1773958296 commands::sync::rad_sync reactor-controller: Initializing reactor thread...\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Entering reactor event loop\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           node: Listening on 127.0.0.1:44241..\n1773958296 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/bob/.radicle/node/control.sock..\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           node: Running node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk in /tmp/.tmpSxtDk3/bob/.radicle..\n1773958296 commands::sync::rad_sync      node: Opening policy database..\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Control thread listening on socket..\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received command QueryState(..)\n1773958296 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel\n1773958297 commands::sync::rad_sync      node: Default seeding policy set to 'block (all)'\n1773958297 commands::sync::rad_sync      node: Initializing service (Test)..\n1773958297 commands::sync::rad_sync      node: Opening node database..\n1773958297 commands::sync::rad_sync   service: Init @1773958296930\n1773958297 commands::sync::rad_sync   service: Empty refs database, populating from storage..\n1773958297 commands::sync::rad_sync   service: Not enough available peers to connect to (available=0, wanted=8)\n1773958297 commands::sync::rad_sync reactor-controller: Initializing reactor thread...\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Entering reactor event loop\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           node: Listening on 127.0.0.1:33589..\n1773958297 commands::sync::rad_sync      node: Binding control socket /tmp/.tmpSxtDk3/eve/.radicle/node/control.sock..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           node: Running node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z in /tmp/.tmpSxtDk3/eve/.radicle..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received command Seed(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Control thread listening on socket..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command QueryState(..)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <signals>           node: Signal notifications channel error: receiving on an empty and disconnected channel\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command Seed(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Connect(z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk, 127.0.0.1:44241, ConnectOptions { persistent: false, timeout: 30s })\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241)..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Inbound connection from 127.0.0.1:35090..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Registering outbound transport for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Registering transport\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Outbound peer resource registered for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Accepted inbound connection from 127.0.0.1:35090..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Registering transport\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Inbound peer resource registered\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Handshake with ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } is complete\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Session established with z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connected to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (127.0.0.1:44241) (Outbound)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Subscribing to messages since timestamp 1773871897189..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>      transport: Handshake with ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } is complete\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Session established with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Connected to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:35090) (Inbound)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Subscribing to messages since timestamp 1773871897189..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command QueryState(..)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received command Connect(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi, 127.0.0.1:40633, ConnectOptions { persistent: false, timeout: 30s })\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connecting to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633)..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Attempted connection to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Registering outbound transport for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Registering transport\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Outbound peer resource registered for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Inbound connection from 127.0.0.1:48804..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received node announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296732)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Accepted inbound connection from 127.0.0.1:48804..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Registering transport\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Inbound peer resource registered\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296821)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296732)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Address store entry for node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi updated at 1773958296732\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296821)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Address store entry for node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk updated at 1773958296821\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296822)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296734)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Missing seeded inventory rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji; initiating fetch..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [inbound connected] (all remotes)..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received subscription filter from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296822)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Opened new stream with id 13 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received subscription filter from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296733)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk cloning from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 13 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Worker processing incoming fetch for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk on stream 13..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296733)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 13..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>      transport: Handshake with ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } is complete\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Session established with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connected to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (127.0.0.1:40633) (Outbound)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Subscribing to messages since timestamp 1773871897227..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296733)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Queued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Handshake with ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } is complete\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Session established with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connected to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (127.0.0.1:48804) (Inbound)\n1773958297 test: Waiting for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi))]\n1773958297 test: Waiting for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi))]\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Subscribing to messages since timestamp 1773871897231..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296930)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received node announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296732)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296930)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Address store entry for node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z updated at 1773958296930\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296930)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 0 item(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296931)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296931)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received subscription filter from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296733)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296821)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296822)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received node announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296930)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296732)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958296930)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Address store entry for node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi updated at 1773958296732\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Address store entry for node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z updated at 1773958296930\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296734)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to route to [(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)), (RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z)), (RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), PublicKey(z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk))]\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Missing seeded inventory rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji; initiating fetch..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [outbound connected] (all remotes)..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received subscription filter from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Opened new stream with id 12 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 12 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Worker processing incoming fetch for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z on stream 12..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z cloning from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296733)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958296733)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Queued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received node announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 address(es) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296821)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296821)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Address store entry for node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk updated at 1773958296821\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 0 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296822)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958296822)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 12..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched rad/id (14ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched data for 1 remote(s) (26ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched rad/id (8ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Fetched data refs for 0 remotes (31ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Validated 1 remote(s) (31ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 13 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch::state: Applied updates (32ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>     radicle_fetch: Finished clone of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (50ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Upload pack finished (47ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#0>        worker: Upload process on stream 13 exited with result Ok(())\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 13, remote z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 13 of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk closing with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received `close` command for stream 13 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Stream 13 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#0>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched data for 1 remote(s) (22ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received fetch result from worker for stream 13, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs\"), oid: 99c549702e2bcfe02b0e68d4a2224fb7a1524529 }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master\"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: true, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName(\"xyz.radicle.project\")): Payload { value: Object {\"defaultBranch\": String(\"master\"), \"description\": String(\"Radicle Heartwood Protocol & Stack\"), \"name\": String(\"heartwood\")} }}, delegates: Delegates(NonEmpty { head: Did(\"did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Dequeued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..99c5497 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..f2de534 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Updating and announcing inventory for cloned repository rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Fetched data refs for 0 remotes (28ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Validated 1 remote(s) (28ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch::state: Applied updates (29ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>     radicle_fetch: Finished clone of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (39ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#0>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297282)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 12 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Upload pack finished (39ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#1>        worker: Upload process on stream 12 exited with result Ok(())\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 12, remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 12 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closing with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297283)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `close` command for stream 12 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 12 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297282)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297282)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297283)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297283)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at 99c549702e2bcfe02b0e68d4a2224fb7a1524529 (t=1773958297283)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to 99c549702e2bcfe02b0e68d4a2224fb7a1524529\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297283)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297283)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297283)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 12, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs\"), oid: 99c549702e2bcfe02b0e68d4a2224fb7a1524529 }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master\"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: true, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName(\"xyz.radicle.project\")): Payload { value: Object {\"defaultBranch\": String(\"master\"), \"description\": String(\"Radicle Heartwood Protocol & Stack\"), \"name\": String(\"heartwood\")} }}, delegates: Delegates(NonEmpty { head: Did(\"did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Dequeued fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..99c5497 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..f2de534 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..0656c21 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Updating and announcing inventory for cloned repository rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297295)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297296)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297295)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297295)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297296)\n1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be in sync with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297296)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at 99c549702e2bcfe02b0e68d4a2224fb7a1524529 (t=1773958297296)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to 99c549702e2bcfe02b0e68d4a2224fb7a1524529\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297296)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297296)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 test: Waiting for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be in sync with z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297296)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Routing table updated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with seed z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 test: rad-sync:7: `rad issue open --title Test `rad sync` --description Check that the command works -q --no-announce` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 test: rad-sync:14: `rad sync status --sort-by alias` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"status\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"seedsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"nodeId\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)\n1773958297 test: rad-sync:28: `rad sync --announce` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"status\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"seedsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"subscribe\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"announceRefsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command AnnounceRefs(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Announcing refs rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi @ f2dfe80248cf8df5267dbedcd2e186bff3a8f84d to peers (t=1773958297410)..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Saved local sync status for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297410)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297410)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297410)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297410)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958297410)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi to be broadcast in 0 millisecond(s) (t=1773958297410)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [outbound connected] (1 remote(s))..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Opened new stream with id 20 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi [inbound connected] (1 remote(s))..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Opened new stream with id 21 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 20 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `open` command for stream 21 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Worker processing incoming fetch for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk on stream 21..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Worker processing incoming fetch for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z on stream 20..\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z pulling from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk pulling from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 20..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 21..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched rad/id (4ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched rad/id (3ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched data for 1 remote(s) (19ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched data for 1 remote(s) (17ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Fetched data refs for 0 remotes (27ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Validated 1 remote(s) (28ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 20 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch::state: Applied updates (28ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Upload pack finished (36ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#2>        worker: Upload process on stream 20 exited with result Ok(())\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 20, remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 20 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closing with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `close` command for stream 20 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 20 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>     radicle_fetch: Finished pull of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji (38ms)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.issue at 401d45c8e3d81ab963cb0cd16a4d41a69b39452a\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Fetched data refs for 0 remotes (28ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Sent done signal to remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `end-of-file` on stream 21 from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <upload-pack>     worker: Exiting upload-pack reader thread for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Validated 1 remote(s) (29ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Upload pack finished (39ms)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#3>        worker: Upload process on stream 21 exited with result Ok(())\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received fetch result from worker for stream 21, remote z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 21 of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk closing with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received `close` command for stream 21 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Stream 21 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closed with 0 byte(s) sent and 0 byte(s) received\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch::state: Applied updates (30ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>     radicle_fetch: Finished pull of rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji (41ms)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>        worker: Failed to set canonical references for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji: reference 'refs/rad/id' not found; class=Reference (4); code=NotFound (-3)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.issue at 401d45c8e3d81ab963cb0cd16a4d41a69b39452a\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <worker#1>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 20, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Updated { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs\"), old: 99c549702e2bcfe02b0e68d4a2224fb7a1524529, new: f2dfe80248cf8df5267dbedcd2e186bff3a8f84d }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a\"), oid: 401d45c8e3d81ab963cb0cd16a4d41a69b39452a }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master\"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: false, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName(\"xyz.radicle.project\")): Payload { value: Object {\"defaultBranch\": String(\"master\"), \"description\": String(\"Radicle Heartwood Protocol & Stack\"), \"name\": String(\"heartwood\")} }}, delegates: Delegates(NonEmpty { head: Did(\"did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: ~ 99c5497..f2dfe80 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ref updated: * 0000000..401d45c refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297554)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297554)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Received fetch result from worker for stream 21, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Initiator { rid: RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji), result: Ok(FetchResult { updated: [Updated { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs\"), old: 99c549702e2bcfe02b0e68d4a2224fb7a1524529, new: f2dfe80248cf8df5267dbedcd2e186bff3a8f84d }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.id/0656c217f917c3e06234771e9ecae53aba5e173e\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Created { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a\"), oid: 401d45c8e3d81ab963cb0cd16a4d41a69b39452a }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/heads/master\"), oid: f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/id\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }, Skipped { name: RefString(\"refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/root\"), oid: 0656c217f917c3e06234771e9ecae53aba5e173e }], canonical: UpdatedCanonicalRefs { inner: {} }, namespaces: {PublicKey(z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi)}, clone: false, doc: DocAt { commit: 0656c217f917c3e06234771e9ecae53aba5e173e, blob: d96f425412c9f8ad5d9a9a05c9831d0728e2338d, doc: Doc { version: Version(1), payload: {PayloadId(TypeName(\"xyz.radicle.project\")): Payload { value: Object {\"defaultBranch\": String(\"master\"), \"description\": String(\"Radicle Heartwood Protocol & Stack\"), \"name\": String(\"heartwood\")} }}, delegates: Delegates(NonEmpty { head: Did(\"did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"), tail: [] }), threshold: Threshold(1), visibility: Public } } }) }\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi successfully\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: ~ 99c5497..f2dfe80 refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/rad/sigrefs for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ref updated: * 0000000..401d45c refs/namespaces/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi/refs/cobs/xyz.radicle.issue/401d45c8e3d81ab963cb0cd16a4d41a69b39452a for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297554)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at f2dfe80248cf8df5267dbedcd2e186bff3a8f84d (t=1773958297554)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to f2dfe80248cf8df5267dbedcd2e186bff3a8f84d\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297554)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297561)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received refs announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297554)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297561)\n1773958297 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297554)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297561)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji contains our own remote at f2dfe80248cf8df5267dbedcd2e186bff3a8f84d (t=1773958297561)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Updating sync status of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji to f2dfe80248cf8df5267dbedcd2e186bff3a8f84d\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Skipping fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, all refs are already in storage\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297561)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received refs announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with 1 remote(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297561)\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297561)\n1773958297 test: rad-sync:36: `rad sync status --sort-by alias` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"status\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"seedsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"nodeId\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)\n1773958297 test: rad-sync:50: `rad sync --announce` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"status\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"seedsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 test: rad-sync:57: `rad sync --fetch` @ /tmp/.tmpSxtDk3/working/acme\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"status\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"seedsFor\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"namespaces\":[\"z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\"]}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Seeds(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Found 2 connected seed(s) and 1 disconnected seed(s) for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"session\",\"nid\":\"z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\"}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command QueryState(..)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"fetch\",\"rid\":\"rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\",\"nid\":\"z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\",\"timeout\":{\"secs\":9,\"nanos\":0}}` on control socket\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Received command Fetch(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji, z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z)\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Starting fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Fetch initiated for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji with z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z [inbound connected] (all remotes)..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Opened new stream with id 13 for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji and remote z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>        worker: Worker processing outgoing fetch for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received `open` command for stream 13 from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Worker processing incoming fetch for z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi on stream 13..\n1773958297 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>        worker: z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi pulling from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Spawning upload-pack process for rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji on stream 13..\n1773958297 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>           cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n\nthread 'z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <worker#4>    ' panicked at crates/radicle-fetch/src/stage.rs:273:22:\nensure we got canonicdal 'rad/id' ref\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <upload-pack>     worker: Read channel timed out for upload-pack rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Upload pack finished (3008ms)\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <worker#2>        worker: Upload process on stream 13 exited with result Ok(())\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Received fetch result from worker for stream 13, remote z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi: Responder { rid: Some(RepoId(rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji)), result: Ok(()) }\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Stream 13 of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi closing with 0 byte(s) sent and 0 byte(s) received\n1773958300 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Peer z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi fetched rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from us successfully\n1773958300 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Received `close` command for stream 13 from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958300 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Stream 13 of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z closed with 0 byte(s) sent and 0 byte(s) received\n1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=7)\n1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958297282)\n1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958297295)\n1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (t=1773958296734)\n1773958302 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Sending inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (t=1773958296734)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297295)\n1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958297282)\n1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Stored announcement from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk to be broadcast in 0 millisecond(s) (t=1773958297282)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Stored announcement from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z to be broadcast in 0 millisecond(s) (t=1773958297295)\n1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Received inventory announcement of z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi with 1 item(s) from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958302 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Ignoring stale announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Ignoring stale announcement from z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi (t=1773958296734)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Not enough available peers to connect to (available=1, wanted=8)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Connecting to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)..\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Skipping redundant inventory announcement (t=1773958297282)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Attempted connection to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>           wire: Failed to establish connection to eve.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (failed to lookup address information: Temporary failure in name resolution)\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: No fetches to cancel for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..\n1773958302 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        service: Not enough available peers to connect to (available=0, wanted=8)\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Not enough available peers to connect to (available=1, wanted=7)\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)..\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>            cob: Loading object of type xyz.radicle.id at 0656c217f917c3e06234771e9ecae53aba5e173e\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Skipping redundant inventory announcement (t=1773958297295)\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>           wire: Failed to establish connection to bob.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (failed to lookup address information: Temporary failure in name resolution)\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..\n1773958303 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        service: Not enough available peers to connect to (available=0, wanted=7)\n\nthread 'commands::sync::rad_sync' panicked at crates/radicle-cli-test/src/lib.rs:502:36:\n\n--- Expected\n++++ actual:   stdout\n   1    1 | Fetching rad:z42hL2jL4XNk6K8oHQaSWfMgCL7ji from the network, found 2 potential seed(s).\n   2      - ✓ Target met: 2 seed(s)\n   3      - 🌱 Fetched from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n   4      - 🌱 Fetched from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n        2 + ✗ 0 of 0 preferred seeds, and 0 of at least 2 total seeds… [fetch z6Mkux1…nVhib7Z@127.0.0.1:48804] <canceled>\n        3 + ✗ Error: timed out reading from control socket\n\nExit status: 1\n\n1773958328 test: Node z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z shutting down..\n1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...\n1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <service>        reactor: Shutdown\n1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Received `{\"command\":\"shutdown\"}` on control socket\n1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <control>        control: Shutdown requested..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Peer ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } has reset the connection\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Disconnecting peer: connection reset\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Handing over transport Transport { session: \"ProtocolArtifact { session: \\\"<omitted>\\\", state: \\\"<omitted>\\\" }\", state: Terminated, link_direction: Inbound, write_intent: false } with token 3\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Transport handover for disconnecting peer\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (connection reset)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Cancelled 1 ongoing, 0 queued for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Command returned error: i/o error: Broken pipe (os error 32)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..\n1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           pool: Worker pool shutting down..\n1773958328 z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z <runtime>           node: Node shutdown completed for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958328 test: Node z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk shutting down..\n1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...\n1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <service>        reactor: Shutdown\n1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Received `{\"command\":\"shutdown\"}` on control socket\n1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <control>        control: Shutdown requested..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>      transport: Peer ProtocolArtifact { session: \"<omitted>\", state: \"<omitted>\" } has reset the connection\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Disconnecting peer: connection reset\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Handing over transport Transport { session: \"ProtocolArtifact { session: \\\"<omitted>\\\", state: \\\"<omitted>\\\" }\", state: Terminated, link_direction: Outbound, write_intent: false } with token 2\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Transport handover for disconnecting peer\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (connection reset)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=2, wanted=8)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Connecting to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (bob.radicle.example:8776)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Failed to establish connection to bob.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk (failed to lookup address information: Temporary failure in name resolution)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=8)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Attempted connection to z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (eve.radicle.example:8776)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>           wire: Failed to establish connection to eve.radicle.example:8776: failed to lookup address information: Temporary failure in name resolution\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Disconnected from z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z (failed to lookup address information: Temporary failure in name resolution)\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: No fetches to cancel for z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Dropping peer z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z..\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        service: Not enough available peers to connect to (available=0, wanted=8)\n1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           pool: Worker pool shutting down..\n1773958328 z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk <runtime>           node: Node shutdown completed for z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk\n1773958328 test: Node z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi shutting down..\n1773958328 commands::sync::rad_sync reactor::controller: Initiating reactor shutdown...\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <service>        reactor: Shutdown\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Received `{\"command\":\"shutdown\"}` on control socket\n1773958328 z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <control>        control: Shutdown requested..\n\nthread 'z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi <runtime>     ' panicked at crates/radicle-node/src/runtime.rs:307:25:\ncalled `Result::unwrap()` on an `Err` value: Any { .. }\n\nthread 'commands::sync::rad_sync' panicked at /ci/src/crates/radicle-node/src/test/node.rs:95:14:\ncalled `Result::unwrap()` on an `Err` value: Any { .. }\nstack backtrace:\n   0:     0x55b454016e52 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9\n   1:     0x55b454016e52 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14\n   2:     0x55b454016e52 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9\n   3:     0x55b454016e52 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26\n   4:     0x55b4540450e3 - core::fmt::rt::Argument::fmt::h2c56b3114963061a\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76\n   5:     0x55b4540450e3 - core::fmt::write::h8a494366950f23bb\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25\n   6:     0x55b454011e73 - std::io::default_write_fmt::h7b8824096454f323\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11\n   7:     0x55b454011e73 - std::io::Write::write_fmt::h4e71294925c334d0\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13\n   8:     0x55b454016ca2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9\n   9:     0x55b454019469 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27\n  10:     0x55b45401929e - std::panicking::default_hook::h2c66fc99e962531d\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:324:9\n  11:     0x55b452f32564 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb6bd65493727d71a\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1985:9\n  12:     0x55b452f32564 - test::test_main_with_exit_callback::{{closure}}::h60217ec76a0ece4a\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:145:21\n  13:     0x55b454019f3e - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h318e4efb8c1a5689\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1985:9\n  14:     0x55b454019f3e - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:841:13\n  15:     0x55b454019c0a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13\n  16:     0x55b454017359 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18\n  17:     0x55b45401989d - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5\n  18:     0x55b454042640 - core::panicking::panic_fmt::h62f63d096dd276af\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14\n  19:     0x55b454042b56 - core::result::unwrap_failed::h95bc3f5a607b2c95\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5\n  20:     0x55b452e26da5 - core::result::Result<T,E>::unwrap::h78bc25637382211d\n                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:1167:23\n  21:     0x55b452e26da5 - <radicle_node::test::node::NodeHandle<G> as core::ops::drop::Drop>::drop::hf0b40315654f78a2\n                               at /ci/src/crates/radicle-node/src/test/node.rs:95:14\n  22:     0x55b452e1e473 - core::ptr::drop_in_place<radicle_node::test::node::NodeHandle<radicle_crypto::ssh::keystore::MemorySigner>>::h9601d4473a0ab17e\n                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:804:1\n  23:     0x55b452e0595c - commands::commands::sync::rad_sync::hffaefd75adae47be\n                               at /ci/src/crates/radicle-cli/tests/commands/sync.rs:106:1\n  24:     0x55b452ce13f7 - commands::commands::sync::rad_sync::{{closure}}::hcc597e24966760f7\n                               at /ci/src/crates/radicle-cli/tests/commands/sync.rs:65:14\n  25:     0x55b452e1d126 - core::ops::function::FnOnce::call_once::hb619e5b438a133a9\n                               at /root/.rustup/toolchains/1.90-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs:253:5\n  26:     0x55b452f37dcb - core::ops::function::FnOnce::call_once::h1f9474f1347fff52\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5\n  27:     0x55b452f37dcb - test::__rust_begin_short_backtrace::ha52ab26e77157f03\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:648:18\n  28:     0x55b452f36f05 - test::run_test_in_process::{{closure}}::h229c1a11a50b261f\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:74\n  29:     0x55b452f36f05 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h78821afbf97b39a9\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9\n  30:     0x55b452f36f05 - std::panicking::catch_unwind::do_call::h53abf3ed5bd32ba3\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40\n  31:     0x55b452f36f05 - std::panicking::catch_unwind::h6deb5fe1e91873c9\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19\n  32:     0x55b452f36f05 - std::panic::catch_unwind::hea0829b6b565654b\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14\n  33:     0x55b452f36f05 - test::run_test_in_process::hdc44dfecea3db21b\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:27\n  34:     0x55b452f36f05 - test::run_test::{{closure}}::h0364ba59bf23f652\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:592:43\n  35:     0x55b452efab04 - test::run_test::{{closure}}::h32730b304eec05da\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:622:41\n  36:     0x55b452efab04 - std::sys::backtrace::__rust_begin_short_backtrace::h177cb952fc54ad2c\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:158:18\n  37:     0x55b452efe4da - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h119d903520007597\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:559:17\n  38:     0x55b452efe4da - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::hab88401d606702a6\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9\n  39:     0x55b452efe4da - std::panicking::catch_unwind::do_call::h163fe12cca9901c2\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40\n  40:     0x55b452efe4da - std::panicking::catch_unwind::he81557d0e17cc1bc\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19\n  41:     0x55b452efe4da - std::panic::catch_unwind::hc2b8e79c20593955\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14\n  42:     0x55b452efe4da - std::thread::Builder::spawn_unchecked_::{{closure}}::hfa6b4978e07815cc\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:557:30\n  43:     0x55b452efe4da - core::ops::function::FnOnce::call_once{{vtable.shim}}::hddcd7484a13fd793\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5\n  44:     0x55b45401d51f - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h5924238c754de3b8\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1971:9\n  45:     0x55b45401d51f - std::sys::pal::unix::thread::Thread::new::thread_start::hb6e99e73da4d28f8\n                               at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/pal/unix/thread.rs:107:17\n  46:     0x7f57daf291f5 - <unknown>\n  47:     0x7f57dafa98dc - <unknown>\n  48:                0x0 - <unknown>\n",
      "stderr": "    Finished `test` profile [unoptimized + debuginfo] target(s) in 0.24s\n     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/radicle-40e59eb55c3d24a4)\n     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/radicle_cli-381f02966f26f239)\n     Running unittests src/main.rs (/ci/cache/cargo-target/debug/deps/rad-923feb31669d4602)\n     Running tests/commands.rs (/ci/cache/cargo-target/debug/deps/commands-2ee7e5653a8bc761)\n\nthread 'commands::sync::rad_sync' panicked at library/core/src/panicking.rs:233:5:\npanic in a destructor during cleanup\nthread caused non-unwinding panic. aborting.\nerror: test failed, to rerun pass `-p radicle-cli --test commands`\n\nCaused by:\n  process didn't exit successfully: `/ci/cache/cargo-target/debug/deps/commands-2ee7e5653a8bc761` (signal: 6, SIGABRT: process abort signal)\n",
      "timestamp": {
        "secs_since_epoch": 1773958328,
        "nanos_since_epoch": 327373776
      },
      "log_source": "Plan"
    }
  64. {
      "type": "action_failed",
      "action": "cargo_test",
      "timestamp": {
        "secs_since_epoch": 1773958330,
        "nanos_since_epoch": 53853037
      },
      "log_source": "Plan"
    }
  65. {
      "type": "executor_ends_in_failure",
      "exit_code": 1,
      "timestamp": {
        "secs_since_epoch": 1773958330,
        "nanos_since_epoch": 57403237
      },
      "log_source": "Plan"
    }

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "patch",
  "repository": {
    "id": "rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5",
    "name": "heartwood",
    "description": "Radicle Heartwood Protocol & Stack",
    "private": false,
    "default_branch": "master",
    "delegates": [
      "did:key:z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT",
      "did:key:z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW",
      "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
      "did:key:z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz",
      "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz"
    ]
  },
  "action": "Updated",
  "patch": {
    "id": "63b4e1d9046a2af75401f74234d7fc18b447109d",
    "author": {
      "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
      "alias": "lorenz"
    },
    "title": "Canonical Symbolic References",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "d9915d275fd07d20db08cf7d3488f8650e66b88a",
    "after": "50d1ef9c3e793ad084b63719869e915d7bdfa539",
    "commits": [
      "50d1ef9c3e793ad084b63719869e915d7bdfa539",
      "c95a6dbbda7f4c9c4263d4fbbbb0bfbc2e9c9e51",
      "6a5d29e45d2da7dd05e7a14c31cc8259adc6623b",
      "38e018cc14a00c4b7e2e20c68ef49b04e2452d5e",
      "0eed4ffdcf41ce9a94ded90457d3e2547f9205fb",
      "1594337cd3b2373d104a9f77998972fb5da84c01",
      "48bc6fafe266629615bf0761065048a994850034",
      "e5c640d5fc5dadd4b631f2642983173c9e36b019",
      "8c68d3abbe9271c6b93f3b9aba78353e82737e9b"
    ],
    "target": "d9915d275fd07d20db08cf7d3488f8650e66b88a",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "63b4e1d9046a2af75401f74234d7fc18b447109d",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Extend the payload `xyz.radicle.crefs` to additionally support creating symbolic references via the member \"symbolic\".",
        "base": "86472fdccbf95d08d0184776ee1ca75d01caf2c8",
        "oid": "0d8ccb51101df44aa643c14e421f0a8f5a1aca53",
        "timestamp": 1758036727
      },
      {
        "id": "a8f4547661b3e0c0ae87a7b2bf10bac784529d42",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "First working revision.",
        "base": "86472fdccbf95d08d0184776ee1ca75d01caf2c8",
        "oid": "4910c5f03beefe20d7a1dea9e0c986de867987b5",
        "timestamp": 1758063904
      },
      {
        "id": "4728a5335d735afa5c6a0427bd88a35f93c7b8fa",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "REVIEW\n\nSuper nice set of changes, and seems to fit so nicely into the canonical\nreference system!\n\nAppreciate the type safety too :)\n\nLeft some bits of feedback, but all-in-all I'm very happy with these changes.",
        "base": "86472fdccbf95d08d0184776ee1ca75d01caf2c8",
        "oid": "cc99c8cc509107757916307fdc5f29210ef70114",
        "timestamp": 1758111930
      },
      {
        "id": "61f41e3e3bf3469acd72b9b3f237bb29356f328f",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Work in Fintan's review.",
        "base": "86472fdccbf95d08d0184776ee1ca75d01caf2c8",
        "oid": "72584651f1818dfc2e9759d4f4afa60ad0ada357",
        "timestamp": 1758117424
      },
      {
        "id": "4f8b72024cc6e070f6e8324292b8205536f6f924",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "7b00bf2e3ac5e83eab262182bf51a5ede656145c",
        "oid": "3324ebbb01151e6f0db951155d342a1782c27f95",
        "timestamp": 1758120326
      },
      {
        "id": "e4e142e1b405905ca7219e1d2534619408104095",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Handle interactions between rules and symrefs, and cyclic symrefs.",
        "base": "e70850cb36c5f08d2d8714017d5404dde34deefa",
        "oid": "902d99f2131f8420f2a8a9c70f645f69e13cfbf1",
        "timestamp": 1758459092
      },
      {
        "id": "6a1155bceb7d3ca55b39311848111f8fdc1f1552",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "REVIEW\n\nSee commits for review suggestions.\n\nLooking really good and clean still!",
        "base": "e70850cb36c5f08d2d8714017d5404dde34deefa",
        "oid": "ce4864fc46c4463b6aeabb79b0712bcaf9987bdf",
        "timestamp": 1758559598
      },
      {
        "id": "52de3142d005a0d934cf6d84f3dab33f2b94dcc0",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Squash in Fintan's review, rename tests as mentioned on Zulip, improve docs on `Doc::canonical_refs`.",
        "base": "e70850cb36c5f08d2d8714017d5404dde34deefa",
        "oid": "0891ad955e8a68b689b56a1b5e1a9e1077147586",
        "timestamp": 1758614851
      },
      {
        "id": "d76a072ff1259a4a1e584e93d5e4eb47a1ff3d27",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "ed8b086045ee5d7bd1327f579de7861a1cf49e3b",
        "oid": "0b0f73d2b39088bbfeb30c496e870b27c915a81b",
        "timestamp": 1758725112
      },
      {
        "id": "17797c5586de8002dbd28d8c647ebc9268430ee0",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "4787b53b1e85d8052744fc77e4160e4d90e46d0f",
        "oid": "d02c4c127a1ff0a8a2d56c8dcad3d815b6cd9427",
        "timestamp": 1759255430
      },
      {
        "id": "9956ae65550991f8b8bed09349588e828e8099c1",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "ee49e28766ce7c703b95e22d177cce046072f03d",
        "oid": "79f3230dd0d29fbf79d931a9adea19855d5f7448",
        "timestamp": 1759333073
      },
      {
        "id": "785d6bf241783c872f468b25c030686ecc9f812b",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Push broken rebase. Will fix in future revision.",
        "base": "c06b00e330d82c8b8221cc8f8776c883208d159f",
        "oid": "b438d5e5cb8e13817aa6db3b6e2e1b2915f71c43",
        "timestamp": 1771121329
      },
      {
        "id": "80f4aaecdea67b0d1588f7ad6de8b4c6e62d375e",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "d9915d275fd07d20db08cf7d3488f8650e66b88a",
        "oid": "50d1ef9c3e793ad084b63719869e915d7bdfa539",
        "timestamp": 1773957804
      }
    ]
  }
}

Ambient stdout

run CI for rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
ERROR: CI run failed inside QEMU

Ambient stderr

<empty log>