Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[server] Add internal raft library #1367 #1368

Merged
merged 14 commits into from
Dec 1, 2024
2 changes: 1 addition & 1 deletion .github/workflows/agdb_server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- run: cargo llvm-cov clean --workspace
- run: cargo llvm-cov --package agdb_server --all-features --no-report
- run: cargo llvm-cov --package agdb_server --all-features --no-report -- --ignored
- run: cargo llvm-cov report --ignore-filename-regex "agdb(.|..)src|agdb_derive|agdb_api|api.rs" --fail-uncovered-functions 0 --show-missing-lines
- run: cargo llvm-cov report --ignore-filename-regex "agdb(.|..)src|agdb_derive|agdb_api|api.rs" --fail-uncovered-functions 1 --show-missing-lines

agdb_server_test:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions agdb_server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ mod db_pool;
mod error_code;
mod logger;
mod password;
#[allow(dead_code)]
mod raft;
mod routes;
mod server_db;
mod server_error;
Expand Down
Loading