Skip to content

Commit

Permalink
add channel support 21
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Novak committed Mar 5, 2024
1 parent d6e9866 commit 9ac89ff
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 @@ -51,7 +51,7 @@ fn main() -> Result<(), Error> {

// Request is a stream request - from client, or from fanout
if req.get_path().starts_with("/stream/") {
let channel = req2.get_header_str("FANOUT").unwrap_or("test");
let channel = req2.get_header_str("Fanout").unwrap_or("test");
return Ok(if req.get_header_str("Grip-Sig").is_some() {
// Request is from Fanout

Expand Down

0 comments on commit 9ac89ff

Please sign in to comment.