Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x

This commit is contained in:
Jan Bartel 2021-05-19 19:07:09 +10:00
commit 2ed1bc7ccd
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class FileTestHelper
try (Stream<Path> s = Files.list(storeDirRoot))
{
return s
.filter((path) -> path.getFileName().toString().contains(sessionId))
.filter((path) -> path.getFileName().toString().endsWith("_" + sessionId))
.findFirst()
.map(Path::toFile)
.orElse(null);