Skip to content

Commit

Permalink
compile fix correction
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Dec 10, 2024
1 parent b1db843 commit 81bf52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zenoh/src/net/runtime/adminspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ impl AdminSpace {
}

let requested_plugins = {
let cfg_guard = &admin.context.runtime.state.config.lock().0;
cfg_guard.plugins().load_requests().collect::<Vec<_>>()
let cfg_guard = admin.context.runtime.state.config.lock();
cfg_guard.0.plugins().load_requests().collect::<Vec<_>>()
};
let mut diffs = Vec::new();
for plugin in active_plugins.keys() {
Expand Down

0 comments on commit 81bf52e

Please sign in to comment.