You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
all further Ajax calls fail with StalePageException
This issue is caused by the cached statement in JsScope:
public CharSequence render()
{
if (statement == null)
{
statement = new StringBuilder();
statement.append("function(");
statement.append(scopeContext.scopeDeclaration());
statement.append(") {\n");
execute(scopeContext);
statement.append(scopeContext.render());
closeScope();
}
return statement.toString();
}
The rendered callbackScript from SliderAjaxJsScopeUiEvent#execute() contains the render count of the page. Since this is never updated, all following requests are rejected because the page count doesn't match the one of the stored page.
The text was updated successfully, but these errors were encountered:
This issue is caused by the cached statement in JsScope:
The rendered callbackScript from SliderAjaxJsScopeUiEvent#execute() contains the render count of the page. Since this is never updated, all following requests are rejected because the page count doesn't match the one of the stored page.
The text was updated successfully, but these errors were encountered: