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
for (String i: broadcasterFilters) {
if (i.equals(TrackMessageSizeFilter.class.getName())) {
found = true;
break;
}
}
if (!found) {
logger.warn("Neither TrackMessageSizeInterceptor or TrackMessageSizeFilter are installed." +
" atmosphere.js may receive glued and incomplete message.");
}
If you configure your own filter like:
org.atmosphere.cpr.broadcastFilterClasses=org.apache.wicket.atmosphere.TrackMessageSizeFilter
then the error/warning is issued even if there is one filter, because the Stringcomparision obviously not work here...
The text was updated successfully, but these errors were encountered:
in AtmosphereFramework there is this code:
If you configure your own filter like:
org.atmosphere.cpr.broadcastFilterClasses=org.apache.wicket.atmosphere.TrackMessageSizeFilter
then the error/warning is issued even if there is one filter, because the Stringcomparision obviously not work here...
The text was updated successfully, but these errors were encountered: