We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1b3b6 commit 2a01efdCopy full SHA for 2a01efd
src/run/storage/storage.cts
@@ -38,7 +38,7 @@ export const getMemoizedKeyValueStoreBackedByRegionalBlobStore = (
38
? memoizedValue
39
: {}
40
41
- span?.setAttributes({ key, blobKey, previousEtag })
+ span?.setAttributes({ key })
42
43
const result = await store.getWithMetadata(blobKey, {
44
type: 'json',
@@ -62,12 +62,6 @@ export const getMemoizedKeyValueStoreBackedByRegionalBlobStore = (
62
inMemoryCache.set(key, blob)
63
}
64
65
- span?.setAttributes({
66
- etag: result?.etag,
67
- reusingPreviouslyFetchedBlob: shouldReuseMemoizedBlob,
68
- status: blob ? (shouldReuseMemoizedBlob ? 'Hit, no change' : 'Hit') : 'Miss',
69
- })
70
-
71
return blob
72
})
73
inMemoryCache.set(key, getPromise)
0 commit comments