Skip to content

Commit

Permalink
Fix this craziness
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Jan 16, 2014
1 parent a3eec61 commit d994760
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,7 @@ public AsynchronousProcessor(AtmosphereConfig config) {
@Override
public void init(ServletConfig sc) throws ServletException {

String maxInactive = sc.getInitParameter(MAX_INACTIVE) != null ? sc.getInitParameter(MAX_INACTIVE) :
config.getInitParameter(MAX_INACTIVE);

String maxInactive = sc.getInitParameter(MAX_INACTIVE);
if (maxInactive != null) {
trackActiveRequest = true;
final long maxInactiveTime = Long.parseLong(maxInactive);
Expand Down

1 comment on commit d994760

@buildhive
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Atmosphere Framework » atmosphere #1718 UNSTABLE
Looks like this commit caused a build failure
(what's this?)

Please sign in to comment.