Updated parameter name from "associateDelay" to "associatePeriod".
This commit is contained in:
parent
c7987b154a
commit
75912deb52
|
@ -70,8 +70,9 @@ public class PushCacheFilter implements Filter
|
|||
@Override
|
||||
public void init(FilterConfig config) throws ServletException
|
||||
{
|
||||
if (config.getInitParameter("associateDelay") != null)
|
||||
_associatePeriod = Long.valueOf(config.getInitParameter("associateDelay"));
|
||||
String associatePeriod = config.getInitParameter("associatePeriod");
|
||||
if (associatePeriod != null)
|
||||
_associatePeriod = Long.valueOf(associatePeriod);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue