diff --git a/src/caches.ts b/src/caches.ts index 3714735..89c7a50 100644 --- a/src/caches.ts +++ b/src/caches.ts @@ -56,6 +56,7 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => { Use waitUntil so you can return the response without blocking on writing to cache */ try { + c.executionCtx && c.executionCtx.waitUntil(cache.put(cacheKey, response.clone())); } catch (error) { console.error((error as Error).stack); diff --git a/src/fetch.ts b/src/fetch.ts index 15840f7..0f3e4d0 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -163,11 +163,15 @@ export const twitterFetch = async ( console.log('Tweet was not found'); return {}; } - !useElongator && - c.executionCtx && - c.executionCtx.waitUntil( - cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) - ); + try{ + !useElongator && + c.executionCtx && + c.executionCtx.waitUntil( + cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) + ); + } catch (error) { + console.error((error as Error).stack); + } if (useElongator) { console.log('Elongator request failed, trying again without it'); wasElongatorDisabled = true; @@ -195,10 +199,14 @@ export const twitterFetch = async ( /* Running out of requests within our rate limit, let's purge the cache */ if (!useElongator && remainingRateLimit < 10) { console.log(`Purging token on this edge due to low rate limit remaining`); - c.executionCtx && - c.executionCtx.waitUntil( - cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) - ); + try { + c.executionCtx && + c.executionCtx.waitUntil( + cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) + ); + } catch (error) { + console.error((error as Error).stack); + } } if (!validateFunction(response)) { @@ -224,7 +232,11 @@ export const twitterFetch = async ( } }); console.log('Caching guest token'); - c.executionCtx.waitUntil(cache.put(guestTokenRequestCacheDummy.clone(), cachingResponse)); + try { + c.executionCtx.waitUntil(cache.put(guestTokenRequestCacheDummy.clone(), cachingResponse)); + } catch (error) { + console.error((error as Error).stack); + } } // @ts-expect-error - We'll pin the guest token to whatever response we have