The polling interval of the service to run the webhook is 5
seconds.
The first event to occur triggers the execution.
Information noteNote: If only one payload is needed, set the window size to
1. If more payloads are needed,
they will be processed as an array.
If the window size is 2, during the time set in the Window threshold parameter, two payloads are sent to
Talend Management Console:
{"param":"1"}
{"param":"2"}
However,
Talend Management Console
does not receive them as two separate payloads, it receives them as an
array:
[
{"data":"{"param":"1"}","type":"application/x-www-form-urlencoded"},
{"data":"{"param":"2"}","type":"application/x-www-form-urlencoded"}
]
The double quotation marks in the Webhook payloads are not escaped
anymore. If some of your Jobs still use backslash (\) to escape them, set the following
property in the
<RemoteEngineInstallation>/etc/org.talend.ipaas.rt.jobserver.client.cfg
configuration file:
job.ctx.params.passthrough=true