JETTY-1337 Workname cannot contain .

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2848 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2011-03-03 06:43:25 +00:00
parent 7b0a8e561c
commit 8b1920859c
2 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,7 @@ jetty-7.3.1-SNAPSHOT
+ JETTY-1331 Allow alternate XML configuration processors (eg spring)
+ JETTY-1335 HttpClient's SelectConnector clean-up
+ JETTY-1333 HttpClient _timeout and _soTimeout is messed up
+ JETTY-1337 Workname cannot contain '.'
jetty-7.3.0.v20110203 3 February 2011
+ JETTY-1259 NullPointerException in JDBCSessionIdManager when invalidating session (further update)

View File

@ -63,6 +63,8 @@ public abstract class AbstractSessionIdManager extends AbstractLifeCycle impleme
*/
public void setWorkerName(String workerName)
{
if (workerName.contains("."))
throw new IllegalArgumentException("Name cannot contain '.'");
_workerName=workerName;
}