Skip to content

Commit

Permalink
Use the new skip-healthchecks URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Pomerantz committed Aug 1, 2016
1 parent b3905a3 commit 070836d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SingularityUI/app/actions/api/requests.es6
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const SkipRequestHealthchecks = buildJsonApiAction(
'SKIP_REQUEST_HEALTHCHECKS',
'PUT',
(requestId, {skipHealthchecks, durationMillis, message, actionId}) => ({
url: `/requests/request/${requestId}/skipHealthchecks`,
url: `/requests/request/${requestId}/skip-healthchecks`,
body: { skipHealthchecks, durationMillis, message, actionId }
})
);
Expand All @@ -118,7 +118,7 @@ export const PersistSkipRequestHealthchecks = buildJsonApiAction(
'PERSIST_SKIP_REQUEST_HEALTHCHECKS',
'DELETE',
(requestId) => ({
url: `/requests/request/${requestId}/skipHealthchecks`
url: `/requests/request/${requestId}/skip-healthchecks`
})
);

Expand Down

0 comments on commit 070836d

Please sign in to comment.