Skip to content

Commit

Permalink
remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
vsseixaso committed Jun 3, 2024
1 parent 9381175 commit aa17d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpClient/middlewares/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const cacheMiddleware = ({ type, storage, asyncSet }: CacheOptions) => {
})
if (asyncSet) {
storageSet().catch(error => {
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan);
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan)
logger?.warn({ message: 'Error writing to the HttpClient cache asynchronously', error })
})
} else {
Expand Down

0 comments on commit aa17d3a

Please sign in to comment.