Skip to content

Commit

Permalink
add channel support 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Novak committed Mar 5, 2024
1 parent 546d3f3 commit 5cf2bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn main() -> Result<(), Error> {
);
let req = Request::from_client();

let channel = Ok(req.get_header_str("FANOUT").unwrap_or("test")).unwrap_or("test");
let channel = Ok::<&str, E>(req.get_header_str("FANOUT").unwrap_or("test")).unwrap_or("test");


// Request is a stream request - from client, or from fanout
Expand Down

0 comments on commit 5cf2bbc

Please sign in to comment.