Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

Workflow running can be stopped by following ways:

Programmable stop

You can stop running of workflow block by fx.stopAfterThisBlock function

Description of this function you can get by this link.

It is proposed for the case when a get block returns nothing and you do not want to run other blocks which do nothing. Using of this function saves AWS process resources and therefore your money.

var v = getVariables();
var src = await api.get('myst2/eventordersbystatus?status='+v['status']);
if (!src || !fx.any(src)) {
  fx.stopAfterThisBlock(false); // false - stops workflow after current block and does not update dateLastRun
}

Stopping result:

Stop by click button

You can stop workflow running on workflow edit page by click on workflow button.

Dialog popup will be proposed you with 2 options:

  • safe stop

  • stop immediately

Choose needed option and then click to Stop button

Safe stop

The option is proposed for the case when you want to wait untill the currend block will be finished with processing and the workflow will be stopped then.

It is recomended option and set as default.

Stopping result:

Stop immediately

The option is proposed for the case when you want to stop processing immediatly and do not wait untill it will be finished. There is a restriction that it can be stopped just in places which call any asyncronius code. It is not a Canvas restriction, it is a Node.js restriction with blocked operations. This description you can get by this link.

It is not recomended option because the bahaivour of integration result may be unpredicted. For example, if you post some data into target application and stopped running before saving in myVault. In this case duplicates can be created next time. Please use this option just in case if integration result are predicted.

Stopping result:

Auto stop

The workflow can be stopped automatically by Canvas block processor, if processor was restarted during processing. One of restarting reason can be a memory exception. If your block was moved to Stopped automatically please contact to CMA support team.

\uD83D\uDCCB Related articles

You can get the full list of block statuses by this link

Canvas vocabulary you can get by this link

  • No labels