Skip to content

Commit

Permalink
Merge pull request #23 from Overmuse/SR/optimize_for_speed
Browse files Browse the repository at this point in the history
update settings for faster sending to kafka
  • Loading branch information
SebRollen authored Apr 20, 2021
2 parents d5e6afc + 3f5baa5 commit c19b5ed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polygon-data-relay"
version = "1.1.1"
version = "1.2.0"
authors = ["Sebastian Rollen <[email protected]>"]
edition = "2018"

Expand All @@ -13,7 +13,7 @@ anyhow = "1.0"
config = "0.11.0"
dotenv = "0.15"
futures = "0.3"
kafka-settings = { git = "ssh://[email protected]/Overmuse/kafka-settings", tag = "v0.2.2" }
kafka-settings = { git = "ssh://[email protected]/Overmuse/kafka-settings", tag = "v0.3.1" }
polygon = { git = "ssh://[email protected]/Overmuse/polygon", tag = "v0.6.2", default-features = false, features = ["ws"] }
rdkafka = { version = "0.26", features = ["ssl-vendored"] }
sentry = { version = "0.21.0", features = ["anyhow"] }
Expand Down
2 changes: 1 addition & 1 deletion src/relay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub async fn run(
Err(e) => {
let e = e.into();
sentry_anyhow::capture_anyhow(&e);
error!("Failed to receive message from the WebSocket: {}", e)
panic!("Failed to receive message from the WebSocket: {}", e)
}
}
},
Expand Down

0 comments on commit c19b5ed

Please sign in to comment.