Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyfraser committed Feb 3, 2025
1 parent a2610f6 commit 624ea7b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .idea/rsky.iml

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

5 changes: 2 additions & 3 deletions rsky-jetstream-subscriber/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,7 @@ async fn process(message: String, client: &reqwest::Client) {
async fn main() {
let default_subscriber_path = env::var("JETSTREAM_SERVER_ENDPOINT")
.unwrap_or("wss://jetstream1.us-west.bsky.network".into());
let wanted_collections = env::var("FILTER_PARAM")
.unwrap_or("".into());
let wanted_collections = env::var("FILTER_PARAM").unwrap_or("".into());
let client = reqwest::Client::new();
let subscriber = tracing_subscriber::FmtSubscriber::new();
tracing::subscriber::set_global_default(subscriber).unwrap();
Expand Down Expand Up @@ -334,4 +333,4 @@ async fn main() {
}
}
}
}
}

0 comments on commit 624ea7b

Please sign in to comment.