Skip to content

Commit

Permalink
explicitly set null
Browse files Browse the repository at this point in the history
  • Loading branch information
rjferguson21 committed Oct 18, 2024
1 parent 02157b4 commit 3c49794
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Client } from "../types";
import { buildChain, log } from "./authservice";
import { Action, AuthserviceConfig } from "./types";

let pendingSecretFetch: Promise<AuthserviceConfig> | null;
let pendingSecretFetch: Promise<AuthserviceConfig> | null = null;

// Cache for in-memory secret to avoid unnecessary Kubernetes secret lookups
let inMemorySecret: AuthserviceConfig | null = null;
Expand Down

0 comments on commit 3c49794

Please sign in to comment.