Skip to content

Commit

Permalink
WIP: making changes to help adoption in bridge easier
Browse files Browse the repository at this point in the history
This stuff is still up in the air. Just trying to pragmatically satisfy
the original generic-queue usages in bridge.
  • Loading branch information
svix-onelson committed Aug 14, 2023
1 parent fbb64b1 commit 8ccc6b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion omniqueue/src/backends/redis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{any::TypeId, collections::HashMap, marker::PhantomData};

use async_trait::async_trait;
use bb8::ManageConnection;
use bb8_redis::RedisMultiplexedConnectionManager;
pub use bb8_redis::RedisMultiplexedConnectionManager;
use redis::streams::{StreamReadOptions, StreamReadReply};

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion omniqueue/src/queue/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub struct Delivery {
pub(crate) payload: Option<Vec<u8>>,

pub(crate) decoders: DecoderRegistry<Vec<u8>>,
pub(crate) acker: Box<dyn Acker>,
pub(crate) acker: Box<dyn Acker + Send + Sync>,
}

impl Delivery {
Expand Down

0 comments on commit 8ccc6b3

Please sign in to comment.