Skip to content

Commit

Permalink
chore: fix server message
Browse files Browse the repository at this point in the history
  • Loading branch information
giangndm committed Nov 23, 2023
1 parent 4494eaa commit 15befa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/media/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async fn main() {
http_server.start().await;
let tx_c = tx.clone();
async_std::task::spawn(async move {
log::info!("Start http server on port {}", http_port);
log::info!("Start http server on port2 {}", http_port);
while let Some(event) = http_server.recv().await {
tx_c.send(event).await;
}
Expand Down

0 comments on commit 15befa4

Please sign in to comment.