Remove cache dbg!
All checks were successful
Fly Deploy / Deploy app (push) Successful in 2m31s
Fly Deploy / Smoketest (push) Successful in 1m7s

This commit is contained in:
Gabriel Simmer 2023-10-23 21:26:44 +01:00
parent 90a9abda24
commit 63b4993058
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ

1
src/cache/mod.rs vendored
View file

@ -28,7 +28,6 @@ pub async fn get(key: &String) -> Option<CachedItem> {
.get_or_init(|| Mutex::new(HashMap::new()))
.lock()
.unwrap();
dbg!(&key);
match data.get(key) {
Some(c) => {
if should_use(&c) {