From cf0b0953491bc91aa21649e3c97035c479195c48 Mon Sep 17 00:00:00 2001 From: Millie C Date: Mon, 27 Mar 2023 17:31:16 -0400 Subject: [PATCH] Cargo fmt --- consensus/service/src/api/client_api_service.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consensus/service/src/api/client_api_service.rs b/consensus/service/src/api/client_api_service.rs index c7403cb61a..df3d0b67db 100644 --- a/consensus/service/src/api/client_api_service.rs +++ b/consensus/service/src/api/client_api_service.rs @@ -277,9 +277,9 @@ impl ConsensusClientApi for ClientApiService { { let session = ClientSession::from(msg.channel_id.clone()); let mut tracker = self.tracked_sessions.lock().expect("Mutex poisoned"); - // Calling get() on the LRU bumps the entry to show up as more + // Calling get() on the LRU bumps the entry to show up as more // recently-used. - if tracker.get(&session).is_none() { + if tracker.get(&session).is_none() { tracker.put(session, ClientSessionTracking::new()); } }