Skip to content

Commit ceaf31f

Browse files
committed
fix: clippy lints
A new clippy lint was breaking CI Signed-off-by: Jalil David Salamé Messina <[email protected]>
1 parent 331b8ca commit ceaf31f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tower-sessions-core/src/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Session {
105105
}
106106

107107
#[tracing::instrument(skip(self), err)]
108-
async fn get_record(&self) -> Result<MappedMutexGuard<Record>> {
108+
async fn get_record(&self) -> Result<MappedMutexGuard<'_, Record>> {
109109
let mut record_guard = self.inner.record.lock().await;
110110

111111
// Lazily load the record since `None` here indicates we have no yet loaded it.

0 commit comments

Comments
 (0)