Skip to content

Commit

Permalink
Revert "test: add logs to help debug redis lookup errors"
Browse files Browse the repository at this point in the history
  • Loading branch information
kespinola authored Oct 18, 2023
1 parent 37a2a0e commit f29108c
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions api/src/dataloaders/collection.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::collections::HashMap;

use async_graphql::{dataloader::Loader as DataLoader, FieldError, Result};
use hub_core::tracing::info;
use poem::async_trait;
use redis::{AsyncCommands, Client as Redis};
use sea_orm::{prelude::*, FromQueryResult, QueryFilter, QuerySelect};
Expand Down Expand Up @@ -77,13 +76,8 @@ impl DataLoader<Uuid> for TotalMintsLoader {

for key in keys {
let redis_key = format!("collection:{key}:total_mints");
info!("total mints loader - get: redis_key: {}", redis_key);
match redis_connection.get::<_, i64>(&redis_key).await {
Ok(value) => {
info!(
"total mints loader - get: redis_key: {} value: {:?}",
redis_key, value
);
results.insert(*key, value);
},
Err(_) => {
Expand Down Expand Up @@ -119,11 +113,6 @@ impl DataLoader<Uuid> for TotalMintsLoader {
let count = count_results.get(&key).copied().unwrap_or_default();
let redis_key = format!("collection:{key}:total_mints");

info!(
"total mints loader - insert: redis_key: {} count: {:?}",
redis_key, count
);

redis_connection
.set::<_, i64, Option<i64>>(&redis_key, count)
.await?;
Expand Down Expand Up @@ -167,13 +156,8 @@ impl DataLoader<Uuid> for SupplyLoader {

for key in keys {
let redis_key = format!("collection:{key}:supply");
info!("supply loader - get: redis_key: {}", redis_key);
match redis_connection.get::<_, Option<i64>>(&redis_key).await {
Ok(value) => {
info!(
"supply loader - get: redis_key: {} value: {:?}",
redis_key, value
);
results.insert(*key, value);
},
Err(_) => {
Expand Down Expand Up @@ -233,10 +217,6 @@ impl DataLoader<Uuid> for SupplyLoader {
for key in computed_supplies {
let count = count_results.get(&key).copied();
let redis_key = format!("collection:{key}:supply");
info!(
"supply loader - insert: redis_key: {} count: {:?}",
redis_key, count
);

redis_connection
.set::<_, Option<i64>, Option<i64>>(&redis_key, count)
Expand Down

0 comments on commit f29108c

Please sign in to comment.