Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fixed variable name #167

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tower-sessions-core/src/session_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@
Store: SessionStore,
{
async fn save(&self, record: &Record) -> Result<()> {
let cache_save_fut = self.store.save(record);
let store_save_fut = self.cache.save(record);
let store_save_fut = self.store.save(record);
let cache_save_fut = self.cache.save(record);

Check warning on line 122 in tower-sessions-core/src/session_store.rs

View check run for this annotation

Codecov / codecov/patch

tower-sessions-core/src/session_store.rs#L121-L122

Added lines #L121 - L122 were not covered by tests

futures::try_join!(cache_save_fut, store_save_fut)?;
futures::try_join!(store_save_fut, cache_save_fut)?;

Check warning on line 124 in tower-sessions-core/src/session_store.rs

View check run for this annotation

Codecov / codecov/patch

tower-sessions-core/src/session_store.rs#L124

Added line #L124 was not covered by tests

Ok(())
}
Expand Down