Skip to content

Commit

Permalink
[DS-1898] OAI not always closing contexts
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVdV authored and helix84 committed Feb 14, 2014
1 parent d1c5df9 commit 61255bf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ protected void doGet(HttpServletRequest request,
"Requested OAI context \""
+ request.getPathInfo().replace("/", "")
+ "\" does not exist");
} finally {
if(context != null && context.isValid())
{
context.abort();
}
}

}
Expand Down

0 comments on commit 61255bf

Please sign in to comment.