Time out problem

Concerns: Interface Builder (forio.com)

Hi Will

Having solved the previous problems myself and working on the applicatieon I suddenly got the following message. Can you please advise me?

22:58:59The timeout(10) seconds was exceeded while waiting for a response from command(com.forio.epicenter.grid.transformer.worker.uplink.v1.command.StateCommand@298667ed)

https://forio.com/v2/run/synmind/isa-ggz-prototype-01/0000018f7e08101d3250511d9dbb00658744/operations/stepTo/
500: Internal Server Error
Type: com.forio.epicenter.grid.transformer.worker.ModelTimeoutException

This issue is due to the stepTo operation taking too long. There’s a default 10 second time it needs to run otherwise there’s an error. Usually this is due to a very large model, or a very small timestep.

You can extend the timeout period for an operation up to 300 seconds by adding a snippet like this in your context file (*.ctx2). The default is 10 seconds.

"operations": {
   "step": {
      "timeoutSeconds": 30
    }
  },

Let us know if that helps.

WILL