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.
2 parents c93a0f2 + 7561922 commit 04b9977Copy full SHA for 04b9977
src/lib/bridge/wrappers/cached.ts
@@ -16,8 +16,8 @@ class HandlerJob<Req> extends Job<WrappedRequest<Req>> {
16
17
hashCode(): string {
18
// Ensure deterministic stringification between two requests for the same
19
- // properties
20
- return stringify(this.data);
+ // properties. Do not cache based on the sender since it changes every request.
+ return stringify(this.req);
21
}
22
23
0 commit comments