Skip to content

Commit

Permalink
Fix can't delete graph by instanceId issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pengz1 committed Mar 21, 2018
1 parent d17fcd1 commit 674ff30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/services/taskgraph-api-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,14 @@ function taskgraphApiServiceFactory(

TaskgraphApiService.prototype.workflowsAction = function(graphId, command) {
return runRpc('workflowsAction', {
command: command,
command: command,
identifier: graphId
});
};

TaskgraphApiService.prototype.workflowsDeleteByInstanceId = function(graphId) {
return runRpc('workflowsDeleteByInstanceId', {
graphId: graphId
identifier: graphId
});
};

Expand Down

0 comments on commit 674ff30

Please sign in to comment.