Skip to content

Commit

Permalink
[7.8] [CCR] Fix follower indices table not updating after pausing (#6…
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonelizabeth authored Jun 18, 2020
1 parent 08cce6d commit c04e0a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class FollowerIndicesTable extends PureComponent {
if (prevFollowerIndices !== followerIndices) {
return {
prevFollowerIndices: followerIndices,
filteredClusters: getFilteredIndices(followerIndices, queryText),
filteredIndices: getFilteredIndices(followerIndices, queryText),
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ export const resumeFollowerIndex = (id) =>
scope,
handler: async () => resumeFollowerIndexRequest(id),
onSuccess(response, dispatch) {
console.log('response', response);
/**
* We can have 1 or more follower index resume operation
* that can fail or succeed. We will show 1 toast notification for each.
Expand Down

0 comments on commit c04e0a1

Please sign in to comment.