File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
test/functional/ssl/src/main/java/ssl Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 439
439
<property >
440
440
<!--
441
441
Automatically enabled when inside IntelliJ.
442
- IntelliJ sets the idea.version property when importing Maven projects.
442
+ IntelliJ sets the idea.maven.embedder. version property when importing Maven projects.
443
443
-->
444
- <name >idea.version</name >
444
+ <name >idea.maven.embedder. version</name >
445
445
</property >
446
446
</activation >
447
447
Original file line number Diff line number Diff line change 79
79
import java .util .concurrent .TimeUnit ;
80
80
import java .util .concurrent .atomic .AtomicInteger ;
81
81
82
+ import static com .tangosol .internal .net .metrics .MetricsHttpHelper .PROP_METRICS_ENABLED ;
82
83
import static org .hamcrest .CoreMatchers .is ;
83
84
import static org .hamcrest .MatcherAssert .assertThat ;
84
85
import static org .hamcrest .CoreMatchers .containsString ;
@@ -101,7 +102,7 @@ public static void setup()
101
102
System .setProperty ("coherence.localhost" , "127.0.0.1" );
102
103
System .setProperty ("coherence.wka" , "127.0.0.1" );
103
104
System .setProperty ("coherence.role" , "client" );
104
- System .setProperty (MetricsHttpHelper .PROP_METRICS_ENABLED , "true " );
105
+ System .setProperty (MetricsHttpHelper .PROP_METRICS_ENABLED , "false " );
105
106
106
107
m_ports = LocalPlatform .get ().getAvailablePorts ();
107
108
}
@@ -235,6 +236,7 @@ public void shouldUseGlobalSocketProviderWithExtendProxy() throws Exception
235
236
assertThat (member .invoke (new IsSecureProxy ()), is (true ));
236
237
}
237
238
239
+ System .setProperty (PROP_METRICS_ENABLED , "false" );
238
240
System .setProperty ("coherence.extend.address" , "127.0.0.1" );
239
241
System .setProperty ("coherence.extend.port" , String .valueOf (extendPort .get ()));
240
242
You can’t perform that action at this time.
0 commit comments