How do I change the default timeout for a service?
I need it to wait longer before it times out.
The default value is 20000 from reading the code.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I need it to wait longer before it times out.
The default value is 20000 from reading the code.
Hello,
you can change timeout option if you call Rest service with JavaScript.
Create "Run JavaScript" action and write:
precodedatasource1.execute({timeout: 30000});
/code/pre
Here "datasource1" is name of a datasource from "Data" tab.
Sergey, thank you
since I am calling invoke service is there a way to set it when defining the service or on the mapping page?
I can implement your suggestion, just curious.
heg
Unfortunately there is no option to change timeout setting through UI. A workaround posted earlier should work.