Skip to content

Commit

Permalink
fix: commit and flush retry on other states (#4405)
Browse files Browse the repository at this point in the history
* fix: commit and flush retry on other states

* test: retry unit tests

* chore: store fluvio client config instead itself
  • Loading branch information
fraidev authored Feb 22, 2025
1 parent fc15fe5 commit 20f2631
Show file tree
Hide file tree
Showing 4 changed files with 273 additions and 155 deletions.
7 changes: 5 additions & 2 deletions crates/fluvio/src/consumer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ use crate::spu::{SpuDirectory, SpuSocketPool};

pub use config::{ConsumerConfig, ConsumerConfigBuilder};
pub use config::{ConsumerConfigExt, ConsumerConfigExtBuilder, OffsetManagementStrategy, RetryMode};
pub use stream::{ConsumerStream, MultiplePartitionConsumerStream, SinglePartitionConsumerStream};
pub use stream::{
ConsumerStream, MultiplePartitionConsumerStream, SinglePartitionConsumerStream,
ConsumerBoxFuture,
};
pub use offset::ConsumerOffset;
pub use retry::ConsumerWithRetry;
pub use retry::ConsumerRetryStream;

pub use fluvio_protocol::record::ConsumerRecord as Record;
pub use fluvio_spu_schema::server::smartmodule::SmartModuleInvocation;
Expand Down
Loading

0 comments on commit 20f2631

Please sign in to comment.