Skip to content

Commit

Permalink
fix new upgrade assistant /remote_clusters endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Feb 11, 2022
1 parent f1323ec commit e78ff71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function registerRemoteClustersRoute({ router, lib: { handleEsError } }:
response
) => {
try {
const { body: clustersByName } = await client.asCurrentUser.cluster.remoteInfo();
const clustersByName = await client.asCurrentUser.cluster.remoteInfo();

const remoteClusters = Object.keys(clustersByName);

Expand Down

0 comments on commit e78ff71

Please sign in to comment.