Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
DontPush OzoneLayer timeout <<SOLVED>>
Is there a configuration option that would allow me to increase the length time before the Ooops window appears at the top of my application? We have a reporting engine that takes longer that the Atmosphere timeout on its initial load.
The only documentation I can find is the wiki which only shows me the basics. Is there a more advanced doc I can download that might have all the configuration options?
Thanks
James
We stumbled across a forum post where the poster was using an undocumented parameter in his web.xml. Add the code inside the <servelet> tag that extends the DontPushOzoneServlet. This code sets the timeout to 30 seconds. If not explicitly defined then the default is 5 seconds.
<init-param>
<param-name>connectionGuardTimeout</param-name>
<param-value>30</param-value>
</init-param>