FAQ

How does the idle time shutdown feature work in the Servoy Cloud, and how can I modify it?

In the Servoy Cloud, an automatic shutdown is triggered for clients that remain idle for more than 30 minutes. This is the default setting.

However, you can change this time window by adding a clientInfo setting in the code as follows:

application.addClientInfo('SERVOY_CLIENT_MAX_IDLE_TIME:30');

In this code, SERVOY_CLIENT_MAX_IDLE_TIME is a required key, and the value after : represents the idle time in minutes.

Please note that this shutdown feature only applies to NG1 & TiNG clients. Batch Processors and Headless clients are not affected.

The max idle time that can be set is 180 minutes.

Last updated