Skip to content

Commit

Permalink
fix WASM lint
Browse files Browse the repository at this point in the history
Signed-off-by: onur-ozkan <[email protected]>
  • Loading branch information
onur-ozkan committed Sep 25, 2024
1 parent 93efaa2 commit 9b08695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm2src/mm2_core/src/mm_ctx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use common::{executor::{abortable_queue::{AbortableQueue, WeakSpawner},
graceful_shutdown, AbortSettings, AbortableSystem, SpawnAbortable, SpawnFuture},
expirable_map::ExpirableMap};
use futures::channel::oneshot;
use futures::lock::Mutex as AsyncMutex;
use gstuff::{try_s, Constructible, ERR, ERRL};
use lazy_static::lazy_static;
use mm2_event_stream::{controller::Controller, Event, EventStreamConfiguration};
Expand Down Expand Up @@ -40,6 +39,7 @@ cfg_native! {
use std::net::{IpAddr, SocketAddr, AddrParseError};
use std::path::{Path, PathBuf};
use std::sync::MutexGuard;
use futures::lock::Mutex as AsyncMutex;
}

/// Default interval to export and record metrics to log.
Expand Down

0 comments on commit 9b08695

Please sign in to comment.