Skip to content

Commit 6c517e9

Browse files
committed
fix: remove unused informer verb from type
1 parent 97481d8 commit 6c517e9

File tree

1 file changed

+1
-2
lines changed
  • src/supervisor/watchers/handlers

1 file changed

+1
-2
lines changed

src/supervisor/watchers/handlers/types.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ import {
55
V1ObjectMeta,
66
V1PodTemplateSpec,
77
ADD,
8-
CHANGE,
98
DELETE,
109
UPDATE,
1110
} from '@kubernetes/client-node';
1211
import { IncomingMessage } from 'http';
1312

1413
export const FALSY_WORKLOAD_NAME_MARKER = 'falsy workload name';
1514

16-
export type KubernetesInformerVerb = ADD | CHANGE | DELETE | UPDATE;
15+
export type KubernetesInformerVerb = ADD | DELETE | UPDATE;
1716

1817
type WorkloadHandlers = Partial<
1918
Record<KubernetesInformerVerb, WorkloadHandlerFunc>

0 commit comments

Comments
 (0)