Question

The app did not respond in-time

  • 25 August 2021
  • 1 reply
  • 134 views

I am getting “The app did not respond in-time.” whenever I test my action on zapier.com. I have tested my api endpoint in postman and it responds immediately. There should not be a time out. 

 

const response = await z.request({

method: 'POST',

url: `http://url/`,

headers: {

'Content-Type': 'application/json',

'Accept': '*/*',

'Connection': 'keep-alive',

},

body: body

});

 

response.throwForStatus();

return response.json;


This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

I am experiencing the same issue with my App. I seem to get this message about 30% of the time while testing my triggers, and have found that when the timeout occurs, there is no record of a connection being made in the Nginx access log. 

Was thinking it may be an issue with first-time SSL connections through a proxy, but running the same trigger tests through Postman succeeds every time with very low latency.