Skip to content

Commit

Permalink
Fixed silly error
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalkrishnads committed Mar 15, 2024
1 parent 4316380 commit f662518
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 @@ -132,7 +132,7 @@ async fn overall_logs(context: web::Data<Manager>, req_body: String) -> impl Res

#[actix_web::main]
async fn main() -> std::io::Result<()> {
let mut client_options = ClientOptions::parse("mongodb://localhost:8080/").await.unwrap();
let mut client_options = ClientOptions::parse("mongodb://localhost:27017/").await.unwrap();
client_options.app_name = Some("alpadrive".to_string());
let client = Client::with_options(client_options).unwrap();
let database = client.database("alpadrive");
Expand Down

0 comments on commit f662518

Please sign in to comment.