Skip to content

Commit

Permalink
chore: remove unique id on stream-and-chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed Dec 13, 2024
1 parent 99e06c9 commit d765ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/verified-fetch/src/verified-fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export class VerifiedFetch {
})
this.log('got async iterator for %c/%s', cid, path)

const { error, result, header: streamAndFirstChunkHeader } = await serverTiming(`stream-and-chunk-${Math.random().toString(36).slice(2, 9)}`, '', async () => getStreamFromAsyncIterable(asyncIter, path ?? '', this.helia.logger, {
const { error, result, header: streamAndFirstChunkHeader } = await serverTiming('stream-and-chunk', '', async () => getStreamFromAsyncIterable(asyncIter, path ?? '', this.helia.logger, {
onProgress: options?.onProgress,
signal: options?.signal
}))
Expand Down

0 comments on commit d765ad7

Please sign in to comment.