CCI report: 23c0b20e-9810-4def-a393-d6b9363a9a73

Request 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": "Created",
  "patch": {
    "id": "90a8d55eaaf0fab4eb0f6d8e178526a3d193b265",
    "author": {
      "id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
      "alias": "ade"
    },
    "title": "radicle-node: Prevent infinite connection loop on instant dial failure",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "e4a16dc40a87aa603eded45052832cc7ce0d7210",
    "after": "a294e057305a8fcaf6800a02c923b33b482a1ae3",
    "commits": [
      "a294e057305a8fcaf6800a02c923b33b482a1ae3"
    ],
    "target": "e4a16dc40a87aa603eded45052832cc7ce0d7210",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "90a8d55eaaf0fab4eb0f6d8e178526a3d193b265",
        "author": {
          "id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
          "alias": "ade"
        },
        "description": "When a connection drops and the node attempts to reconnect within the\nsame second, the `last_attempt` timestamp written to the database is\nidentitcal to the `last_success` timestamp due to the Unix time (seconds)\nprecision loss.\n\nThe `maintain_connections` logic filters eligible peers using the\ncondition `last_success >= last_attempt`. Because the truncated\ntimestamps are equal, this evaluates to true, causing the node to\nbypass the `CONNECTION_RETRY_DELTA` backoff.\n\nIf the OS instantly rejects the dial attempt (e.g. `EHOSTUNREACH`),\nthe node synchronously queues another connection attempt. This traps\nthe reactor in an infinite `while` loop.\n\nChanging the condition to `last_success > last_attempt` ensures that a\nfailed attempt in the same second correctly evaluates to false, forcing\nthe node to respect the backoff timer and breaking the loop.",
        "base": "e4a16dc40a87aa603eded45052832cc7ce0d7210",
        "oid": "a294e057305a8fcaf6800a02c923b33b482a1ae3",
        "timestamp": 1780681280
      }
    ]
  }
}

Send response

{
  "response": "triggered",
  "run_id": {
    "id": "23c0b20e-9810-4def-a393-d6b9363a9a73"
  },
  "info_url": "https://cci.rad.levitte.org//23c0b20e-9810-4def-a393-d6b9363a9a73.html"
}

Checkout the source (in /opt/radcis/ci.rad.levitte.org/cci/state/23c0b20e-9810-4def-a393-d6b9363a9a73/w)

Started at: 2026-06-05 19:41:34.769331+02:00

Commands:

Read the repo configuration (.radicle/native.yaml in /opt/radcis/ci.rad.levitte.org/cci/state/23c0b20e-9810-4def-a393-d6b9363a9a73/w)

shell: 'export RUSTDOCFLAGS=''-D warnings''


  cargo --version

  rustc --version


  cargo fmt --check

  cargo clippy --all-targets --workspace -- --deny warnings

  cargo build --all-targets --workspace

  cargo doc --workspace --no-deps --all-features

  cargo test --workspace --no-fail-fast

  '

Run the script

Commands:

Send result

{
  "response": "finished",
  "result": "success"
}