We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95bc3b3 + 8f79853 commit 3adc088Copy full SHA for 3adc088
src/supervisor/watchers/handlers/namespace.ts
@@ -85,13 +85,13 @@ export async function trackNamespace(namespace: string): Promise<void> {
85
const loggedListMethod = async () => {
86
try {
87
return await retryKubernetesApiRequest(async () => {
88
+ logger.info({}, 'retrying k8s api request');
89
const reply = await k8sApi.coreClient.readNamespace(namespace);
90
const list = new V1NamespaceList();
91
list.apiVersion = 'v1';
92
list.kind = 'NamespaceList';
93
list.items = new Array<V1Namespace>(reply.body);
94
list.metadata = new V1ListMeta();
- list.metadata.resourceVersion = reply.body.metadata?.resourceVersion;
95
return {
96
response: reply.response,
97
body: list,
0 commit comments