Skip to content

Commit

Permalink
Fix an error in a Japanese document page
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Oct 29, 2021
1 parent 15a9205 commit 3077c40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/_steps/ja_executing_workflow_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ const ws = new WorkflowStep('add_task', {
};

// もし全て OK なら
await complete({ outputs });
// 注意: processBeforeResponse: true を指定している場合
// ここでは await complete() はおすすめしません。呼び出す API の応答が遅いためです。
// これにより、3 秒以内に Slack のイベント API に応答することができなくなる場合があります。
// 代わりに以下のようにすることができます:
// complete({ outputs }).then(() => { console.log('workflow step execution complete registered'); });
complete({ outputs }).then(() => { console.log('workflow step execution complete registered'); });

// もし何か問題が起きたら
// fail({ error: { message: "Just testing step failure!" } }).then(() => { console.log('workflow step execution failure registered'); });
Expand Down

0 comments on commit 3077c40

Please sign in to comment.