Skip to content

Commit

Permalink
0000902: Don't allow an engine to service a request if that engine is…
Browse files Browse the repository at this point in the history
… not "started"
  • Loading branch information
chenson42 committed Nov 8, 2012
1 parent e82ca7c commit f508aee
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -115,7 +115,7 @@ protected ServerSymmetricEngine findEngine(HttpServletRequest req) {
engine = holder.getEngines().values().iterator().next();
}
}
return engine;
return engine.isStarted() ? engine : null;
}

protected static String getEngineNameFromUrl(HttpServletRequest req) {
Expand Down

0 comments on commit f508aee

Please sign in to comment.