Using fetch to pull data from multiple api. Sometimes takes long. I get a timeout 504 exactly after 1 min.
Is there a way to edit the seconds for HTTP IN node timeout? Is it one of the records in msg.req or res?
Please help.
Using fetch to pull data from multiple api. Sometimes takes long. I get a timeout 504 exactly after 1 min.
Is there a way to edit the seconds for HTTP IN node timeout? Is it one of the records in msg.req or res?
Please help.
Do you mean the http request node?
If so, you can supply a timeout value in ms, and attach it to the payload being sent to the request node.
msg.requestTimeout = 120000 /* 2 minutes */
EDIT
I have moved this to General