Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vsseixaso committed Jun 3, 2024
1 parent 3dcf1c3 commit 7f6c454
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HttpClient/middlewares/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ export const cacheMiddleware = ({ type, storage, asyncSet }: CacheOptions) => {
})
}
} catch (error) {
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan)
logger?.warn({ message: 'Error writing to the HttpClient cache', error })
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan)
logger?.warn({ message: 'Error writing to the HttpClient cache', error })
} finally {
cacheWriteSpan?.finish()
cacheWriteSpan?.finish()
}

return
Expand Down

0 comments on commit 7f6c454

Please sign in to comment.