fix supervisor resume route (#7782)

This commit is contained in:
Vadim Ogievetsky 2019-05-28 13:22:42 -07:00 committed by Clint Wylie
parent 58a6f0d5d0
commit 6fdc78abbc
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ ORDER BY "rank" DESC, "created_time" DESC`);
return <AsyncActionDialog
action={
resumeSupervisorId ? async () => {
const resp = await axios.post(`/druid/indexer/v1/supervisor/${resumeSupervisorId}/suspend`, {});
const resp = await axios.post(`/druid/indexer/v1/supervisor/${resumeSupervisorId}/resume`, {});
return resp.data;
} : null
}