Skip to content

Commit

Permalink
Fix the spamming log in CLI. (#14709)
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-aptos authored Sep 20, 2024
1 parent 8eb8b52 commit d79cb44
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions crates/aptos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to the Aptos CLI will be captured in this file. This project

## Unreleased

## [4.2.2] - 2024/09/20
- Fix localnet indexer processors that were emitting spamming logs in 4.2.1.

## [4.2.1] - 2024/09/19
- Fix localnet indexer processors that were failing to startup in 4.2.0

Expand Down
6 changes: 3 additions & 3 deletions crates/aptos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aptos"
description = "Aptos tool for management of nodes and interacting with the blockchain"
version = "4.2.1"
version = "4.2.2"

# Workspace inherited keys
authors = { workspace = true }
Expand Down Expand Up @@ -85,15 +85,15 @@ pathsearch = { workspace = true }
poem = { workspace = true }
# We set default-features to false so we don't onboard the libpq dep. See more here:
# https://github.com/aptos-labs/aptos-core/pull/12568
processor = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "e294b558b33619bba92e205cb74c581488bcb2a3", default-features = false }
processor = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "51a34901b40d7f75767ac907b4d2478104d6a515", default-features = false }
rand = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
self_update = { git = "https://github.com/banool/self_update.git", rev = "8306158ad0fd5b9d4766a3c6bf967e7ef0ea5c4b", features = ["archive-zip", "compression-zip-deflate"] }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "e294b558b33619bba92e205cb74c581488bcb2a3" }
server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "51a34901b40d7f75767ac907b4d2478104d6a515" }
tempfile = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
Expand Down

0 comments on commit d79cb44

Please sign in to comment.