Skip to content

Commit

Permalink
- Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennenoel committed May 17, 2024
1 parent 8ef28a4 commit f106e75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/networking/src/cache/cached.router-route.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {MethodRouterNode} from "../nodes/method-router.node";
import {Request, RequestUtil} from "@pristine-ts/common";
import {Request} from "@pristine-ts/common";
import {createHash} from "crypto";
import {URL} from "url";

Expand Down Expand Up @@ -58,7 +58,7 @@ export class CachedRouterRoute {

cacheControllerMethodArguments(request: Request, methodArguments: any[]): void {
// Hashed the request
const hash = this.hashRequest(request);
const hash = CachedRouterRoute.hashRequest(request);

if(hash === null) {
return;
Expand Down

0 comments on commit f106e75

Please sign in to comment.