Skip to content

Commit

Permalink
geyser: fix filter update loop on snapshot (#410)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle Espinola <kyle.s.espinola@gmail.com>
  • Loading branch information
fanatid and kespinola committed Aug 23, 2024
1 parent 49aab5f commit c3302bd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,22 @@ The minor version will be incremented upon a breaking change and the patch versi

### Fixes

- example: fix tls root issue in rust example ([#404](https://github.com/rpcpool/yellowstone-grpc/pull/404))

### Features

### Breaking

## 2024-08-22

- yellowstone-grpc-client-1.16.0+solana.2.0.5
- yellowstone-grpc-geyser-1.16.1+solana.2.0.5
- yellowstone-grpc-proto-1.15.0+solana.2.0.5
- yellowstone-grpc-tools-1.0.0-rc.12+solana.2.0.5

### Fixes

- example: fix tls root issue in rust example ([#404](https://github.com/rpcpool/yellowstone-grpc/pull/404))
- geyser: fix filter update loop on snapshot ([#410](https://github.com/rpcpool/yellowstone-grpc/pull/410))

## 2024-08-09

- yellowstone-grpc-client-1.16.0+solana.2.0.5
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = [
"examples/rust", # 1.14.1+solana.2.0.5
"yellowstone-grpc-client", # 1.16.0+solana.2.0.5
"yellowstone-grpc-geyser", # 1.16.0+solana.2.0.5
"yellowstone-grpc-geyser", # 1.16.1+solana.2.0.5
"yellowstone-grpc-proto", # 1.15.0+solana.2.0.5
"yellowstone-grpc-tools", # 1.0.0-rc.12+solana.2.0.5
]
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-geyser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-geyser"
version = "1.16.0+solana.2.0.5"
version = "1.16.1+solana.2.0.5"
authors = { workspace = true }
edition = { workspace = true }
description = "Yellowstone gRPC Geyser Plugin"
Expand Down
1 change: 1 addition & 0 deletions yellowstone-grpc-geyser/src/grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,7 @@ impl GrpcService {
metrics::update_subscriptions(&endpoint, Some(&filter), Some(&filter_new));
filter = filter_new;
info!("client #{id}: filter updated");
break;
}
Some(None) => {
is_alive = false;
Expand Down

0 comments on commit c3302bd

Please sign in to comment.