Skip to content

Commit 973e17e

Browse files
committed
updated
1 parent 4b3b714 commit 973e17e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

experimental.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ function flowserviceScheduler(inFlowServiceId, inScheduleStatus, inProjectId)
146146
function processScheduleStatus()
147147
{
148148
debug("Process FlowService Schedule Status - Project [" + projectId + "] FlowService [" + flowServiceId + "] Status [" + scheduleStatus + "]");
149+
149150
var endPoint = "https://" +domainName + "/integration/rest/scheduler/"+ scheduleStatus +"/" + flowServiceId +"?projectName="+ projectId ;
150151
debug("Next URL [" + endPoint + "]");
151152
var headers = setHeaders();

wmiocli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,15 +477,15 @@ program.command('workflow-status <project-id> <run-id>')
477477
.description('Gets Execution status for workflow execution <run-id>')
478478
.action((projectId, runId) => {
479479
checkOptions();
480-
wf.init(tenantDomain, tenantUser, tenantPw, program.opts().timeout, projectId);
480+
wf.init(tenantDomain, tenantUser, tenantPw, program.opts().timeout, program.opts().prettyprint, projectId);
481481
wf.statuswf(runId);
482482
});
483483

484484
program.command('workflow-create <project-id> <worfklow-name> <workflow-description>')
485485
.description('Creates a blank workflow with the given name/description')
486486
.action((projectId, workflowName, workflowDescription) => {
487487
checkOptions();
488-
wf.init(tenantDomain, tenantUser, tenantPw, program.opts().timeout, projectId);
488+
wf.init(tenantDomain, tenantUser, tenantPw, program.opts().timeout, program.opts().prettyprint, projectId);
489489
wf.createwf(workflowName, workflowDescription);
490490
});
491491

0 commit comments

Comments
 (0)