feat: support resin agnet shell(#20)

hook point is com.caucho.server.dispatch.FilterFilterChain.doFilter (resolved #20)
This commit is contained in:
ReaJason
2025-01-07 20:28:51 +08:00
parent 37733e0b98
commit d6570007cc
11 changed files with 118 additions and 26 deletions
@@ -11,7 +11,7 @@ public class DoesNotContainExceptionMatcher extends TypeSafeMatcher<String> {
@Override
protected boolean matchesSafely(String logs) {
return !logs.contains("Exception: ");
return !logs.contains("Exception: ") && !logs.contains("Caused by:");
}
@Override