Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsnaps committed Apr 8, 2024
1 parent 26447a3 commit 954c530
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions limitador/src/storage/redis/redis_cached.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl CachedRedisStorage {
DEFAULT_TTL_RATIO_CACHED_COUNTERS,
Duration::from_millis(DEFAULT_RESPONSE_TIMEOUT_MS),
)
.await
.await
}

async fn new_with_options(
Expand All @@ -224,7 +224,7 @@ impl CachedRedisStorage {
response_timeout,
Duration::from_secs(5),
)
.await?;
.await?;

let partitioned = Arc::new(AtomicBool::new(false));
let async_redis_storage =
Expand Down Expand Up @@ -391,7 +391,7 @@ impl CachedRedisStorageBuilder {
self.ttl_ratio_cached_counters,
self.response_timeout,
)
.await
.await
}
}

Expand Down

0 comments on commit 954c530

Please sign in to comment.