Skip to content

Commit

Permalink
fix: hsot -> host
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghamza-Jd committed Oct 12, 2024
1 parent af53828 commit 85fe97c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jarust/examples/raw_echotest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async fn main() -> anyhow::Result<()> {
.with_env_filter(EnvFilter::from_default_env().add_directive("jarust=trace".parse()?))
.init();
let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/examples/audio_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async fn main() -> anyhow::Result<()> {

let timeout = std::time::Duration::from_secs(10);
let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/examples/echotest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt().with_env_filter(env_filter).init();

let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/examples/echotest_start_with_est.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt().with_env_filter(env_filter).init();

let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/examples/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async fn main() -> anyhow::Result<()> {

let timeout = std::time::Duration::from_secs(10);
let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/examples/video_room.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async fn main() -> anyhow::Result<()> {

let timeout = std::time::Duration::from_secs(10);
let config = JaConfig {
url: "ws://localhsot:8188/ws".to_string(),
url: "ws://localhost:8188/ws".to_string(),
apisecret: None,
server_root: "janus".to_string(),
capacity: 32,
Expand Down

0 comments on commit 85fe97c

Please sign in to comment.