We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 163dc8d commit 8f5317eCopy full SHA for 8f5317e
src/interceptors/jvm.ts
@@ -127,6 +127,7 @@ function testJavaBin(possibleJavaBin: string) {
127
128
const hasUnsupportedJvmError = (testOutput: string) =>
129
testOutput.includes('com/sun/tools/attach/AgentLoadException') || // Old Java missing Attach classes
130
+ testOutput.includes('com.sun.tools.attach.AgentLoadException') || // Old Java missing Attach classes
131
testOutput.includes('java.lang.UnsatisfiedLinkError: no attach in java.library.path') || // Similar
132
testOutput.includes('Are we running in a JRE instead of a JDK') || // JREs aren't sufficient
133
testOutput.includes('Unsupported major.minor version 52.0'); // Pre Java 8(!)
0 commit comments