Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/release.devnet.all.daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ jobs:
playbook: playbooks/geoprobe_agents.yml
- component: geoprobe-target
playbook: playbooks/geoprobe_targets.yml
- component: geolocation-cli
playbook: playbooks/noop.yml
with:
component: ${{ matrix.component }}
playbook: ${{ matrix.playbook }}
Expand Down
39 changes: 0 additions & 39 deletions .github/workflows/release.geolocation-cli.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/release.testnet.push.tags.components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
- device-telemetry-agent
- geoprobe-agent
- geoprobe-target
- geolocation-cli
- funder
- monitor
- client
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ All notable changes to this project will be documented in this file.
- Drop the activator-only pollers from `doublezero` (user and multicastgroup activation waits). The `--wait` flag on `user create`, `user create-subscribe`, `user subscribe`, `multicastgroup create`, and `multicastgroup update` now fetches the post-create state once instead of polling — creates are atomic to `Activated` post-RFC-11, so the wait loop was watching a transition that no longer happens ([#3614](https://github.com/malbeclabs/doublezero/issues/3614))
- Trim the `Rejected` status arm from the device and link activation pollers; `Rejected` was itself an activator-driven transition ([#3614](https://github.com/malbeclabs/doublezero/issues/3614))
- `doublezero user get` and `doublezero user list` surface BGP RTT as an `rtt` column (e.g. `5.50 ms`, or `-` when no sample has been observed). JSON output includes raw `bgp_rtt_ns` alongside the pretty `bgp_rtt` string.
- Remove standalone `doublezero-geolocation` binary; use `doublezero geolocation ...` instead.
- Client
- Simplify `doublezero connect`'s post-create user fetch to a fixed retry-on-RPC-lag get instead of waiting for `UserStatus::Activated`; the activator-driven transition is gone, so the fetch only needs to ride out replica lag ([#3614](https://github.com/malbeclabs/doublezero/issues/3614))
- E2E
Expand Down
15 changes: 0 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[workspace]
members = [
"client/doublezero",
"client/doublezero-geolocation-cli",
"config",
"controlplane/doublezero-admin",
"smartcontract/cli",
Expand Down
26 changes: 0 additions & 26 deletions client/doublezero-geolocation-cli/Cargo.toml

This file was deleted.

15 changes: 0 additions & 15 deletions client/doublezero-geolocation-cli/src/cli/command.rs

This file was deleted.

18 changes: 0 additions & 18 deletions client/doublezero-geolocation-cli/src/cli/config.rs

This file was deleted.

4 changes: 0 additions & 4 deletions client/doublezero-geolocation-cli/src/cli/mod.rs

This file was deleted.

30 changes: 0 additions & 30 deletions client/doublezero-geolocation-cli/src/cli/probe.rs

This file was deleted.

36 changes: 0 additions & 36 deletions client/doublezero-geolocation-cli/src/cli/user.rs

This file was deleted.

132 changes: 0 additions & 132 deletions client/doublezero-geolocation-cli/src/main.rs

This file was deleted.

1 change: 0 additions & 1 deletion e2e/docker/base.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ RUN --mount=type=cache,id=cargo-${CARGO_LOCK_HASH},target=/cargo \
RUSTFLAGS="-C link-arg=-fuse-ld=mold" cargo build --workspace --release --exclude doublezero-serviceability --exclude doublezero-telemetry && \
cp /target/release/doublezero ${BIN_DIR}/ && \
cp /target/release/doublezero-admin ${BIN_DIR}/ && \
cp /target/release/doublezero-geolocation ${BIN_DIR}/ && \
cp /target/release/doublezero-sentinel ${BIN_DIR}/ && \
cp /target/release/fork-accounts ${BIN_DIR}/

Expand Down
1 change: 0 additions & 1 deletion e2e/docker/manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ COPY --from=base /doublezero/bin/doublezero-admin /doublezero/bin/.
COPY --from=base /doublezero/bin/doublezero_serviceability.so /doublezero/bin/.
COPY --from=base /doublezero/bin/doublezero_telemetry.so /doublezero/bin/.
COPY --from=base /doublezero/bin/doublezero_geolocation.so /doublezero/bin/.
COPY --from=base /doublezero/bin/doublezero-geolocation /doublezero/bin/.

COPY --from=base /usr/local/bin/solana /usr/local/bin/.
COPY --from=base /usr/local/bin/solana-keygen /usr/local/bin/.
Expand Down
Loading
Loading