Skip to content

Commit

Permalink
Merge a27c5bd into 24b48c4
Browse files Browse the repository at this point in the history
  • Loading branch information
natanasow authored Sep 11, 2023
2 parents 24b48c4 + a27c5bd commit b27c7ac
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 28 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions packages/relay/src/lib/clients/cache/redisCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ export class RedisCache implements ICacheClient {
const resolvedTtl = (ttl ?? this.options.ttl) / 1000; // convert to seconds

await this.client.setEx(key, resolvedTtl, serializedValue);
this.logger.trace(
`${requestIdPrefix} caching ${key}: ${serializedValue} on ${callingMethod} for ${resolvedTtl} s`
);
this.logger.trace(`${requestIdPrefix} caching ${key}: ${serializedValue} on ${callingMethod} for ${resolvedTtl} s`);
// TODO: add metrics
}

Expand Down
2 changes: 1 addition & 1 deletion packages/server/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
*/

declare module "koa-jsonrpc" {
declare module 'koa-jsonrpc' {
export default function (...opts: any): koaJsonRpc;

export class koaJsonRpc {
Expand Down

0 comments on commit b27c7ac

Please sign in to comment.