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 9b27269 commit 173d71cCopy full SHA for 173d71c
visualvm/jvm/src/org/graalvm/visualvm/jvm/JVMImpl.java
@@ -360,11 +360,14 @@ public Properties getSystemProperties() {
360
}
361
362
public boolean isDumpOnOOMEnabledSupported() {
363
+ if (!Host.LOCALHOST.equals(application.getHost())) {
364
+ return false;
365
+ }
366
if (getAttach() != null) {
367
return true;
368
369
JmxModel jmx = getJmxModel();
- if (Host.LOCALHOST.equals(application.getHost()) && jmx != null && jmx.isTakeHeapDumpSupported()) {
370
+ if (jmx != null && jmx.isTakeHeapDumpSupported()) {
371
372
373
return false;
0 commit comments