Skip to content

Commit

Permalink
bug(example): change connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrusso8 committed Mar 21, 2024
1 parent fbd54c6 commit 6f0fc4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use spark_connect_rs::{SparkSession, SparkSessionBuilder};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut spark: SparkSession =
SparkSessionBuilder::remote("sc://127.0.0.1:15002/;user_id=example_rs".to_string())
SparkSessionBuilder::remote("sc://127.0.0.1:15002/;user_id=example_rs")
.build()
.await?;

Expand Down

0 comments on commit 6f0fc4f

Please sign in to comment.