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
|
@Override
|
||||||
public void init(FilterConfig config) throws ServletException
|
public void init(FilterConfig config) throws ServletException
|
||||||
{
|
{
|
||||||
if (config.getInitParameter("associateDelay") != null)
|
String associatePeriod = config.getInitParameter("associatePeriod");
|
||||||
_associatePeriod = Long.valueOf(config.getInitParameter("associateDelay"));
|
if (associatePeriod != null)
|
||||||
|
_associatePeriod = Long.valueOf(associatePeriod);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue