Skip to content

Commit

Permalink
Fix for checking status response
Browse files Browse the repository at this point in the history
Fix for checking status response from different managers.
  • Loading branch information
markaboulton committed Feb 11, 2019
1 parent d2afdcd commit 968c869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlg/manager/web/static/js/dm.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ function startGraphStatusUpdates(serverUrl, sessionId, selectedNode, delay) {
*/
function does_status_allow_cancel(status) {
// During RUNNING we can cancel
if (status == 3) {
if (uniqueSessionStatus(status) == 3) {
return true;
} else {
return false;
Expand Down

0 comments on commit 968c869

Please sign in to comment.