Skip to content

Commit d795172

Browse files
committed
heartbeat-processors has been removed
1 parent e7e4679 commit d795172

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
### Added
1616

1717
- **Development Tools**: Add `setup-taplo` and `setup` Makefile targets to
18-
simplify development environment setup. Add `heartbeats-db-init` target to
19-
initialize heartbeats database. Update `release-validate` script to test only
20-
packages that are tested in CI, avoiding untested packages with failing tests
18+
simplify development environment setup. Update `release-validate` script to
19+
test only packages that are tested in CI, avoiding untested packages with
20+
failing tests
2121
([#1573](https://github.com/o1-labs/mina-rust/pull/1573))
2222
- **CI**: Add validation workflows for block producer nodes infrastructure,
2323
including connectivity and API capability testing similar to plain nodes

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -393,11 +393,6 @@ docker-build-frontend: ## Build frontend Docker image
393393
docker-build-fuzzing: ## Build fuzzing Docker image
394394
docker build -t $(DOCKER_ORG)/mina-rust-fuzzing:$(GIT_COMMIT) tools/fuzzing/
395395

396-
.PHONY: heartbeats-db-init
397-
heartbeats-db-init: ## Initialize the heartbeats database with schema
398-
@sqlite3 /tmp/heartbeats.db < tools/heartbeats-processor/schema.sql
399-
@echo "Database initialized at /tmp/heartbeats.db"
400-
401396
.PHONY: docker-build-light
402397
docker-build-light: ## Build light Docker image
403398
docker build -t $(DOCKER_ORG)/mina-rust-light:$(GIT_COMMIT) \

website/docs/developers/scripts/release/validate.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ make setup-taplo
99
echo "Cleaning build artifacts to avoid version conflicts..."
1010
cargo clean
1111

12-
echo "Initializing heartbeats database..."
13-
make heartbeats-db-init
14-
15-
echo "Exporting DATABASE_URL for SQLx..."
16-
export DATABASE_URL="sqlite:///tmp/heartbeats.db"
17-
1812
echo "=== Testing stable Rust packages ==="
1913

2014
echo "Testing mina-node-native..."
@@ -47,4 +41,4 @@ make fix-trailing-whitespace
4741
echo "Verifying no trailing whitespace remains..."
4842
make check-trailing-whitespace
4943

50-
echo "Release validation completed successfully!"
44+
echo "Release validation completed successfully!"

0 commit comments

Comments
 (0)