Skip to content

Commit

Permalink
Fix node summary page
Browse files Browse the repository at this point in the history
- we were fetching using the node name.. but storing using the node uid
  • Loading branch information
richard-cox committed Apr 26, 2019
1 parent f350262 commit 32f985d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class KubernetesEffects {
return this.processSingleItemAction<KubernetesNode>(action,
`/pp/${this.proxyAPIVersion}/proxy/api/v1/nodes/${action.nodeName}`,
kubernetesNodesSchemaKey,
getKubeAPIResourceGuid);
(node) => node.metadata.name);
})
);

Expand Down

0 comments on commit 32f985d

Please sign in to comment.