Skip to content

Commit

Permalink
chore: resolve conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: Case Wylie <[email protected]>
  • Loading branch information
cmwylie19 committed Nov 5, 2024
1 parent b63f1e4 commit 45ac205
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 165 deletions.
238 changes: 75 additions & 163 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions src/fluent/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createHash } from "crypto";
import { EventEmitter } from "events";
import byline from "byline";
import https from "https";
import legacyFetch from "node-fetch";
import legacyFetch, { RequestInit } from "node-fetch";
import { Agent, fetch } from "undici";
import { fetch as wrappedFetch } from "../fetch";
import { GenericClass, KubernetesListObject } from "../types";
Expand Down Expand Up @@ -470,7 +470,7 @@ export class Watcher<T extends GenericClass> {
}
};

#getHTTPSAgent = (opts: legacyFetch.RequestInit) => {
#getHTTPSAgent = (opts: RequestInit) => {
// In cluster there will be agent - testing or dev no
const agentOptions =
opts.agent instanceof https.Agent
Expand Down

0 comments on commit 45ac205

Please sign in to comment.