Skip to content

Commit

Permalink
fix(Jmeter): fix a wrong method name
Browse files Browse the repository at this point in the history
update org.apache.jmeter.JMeter#startUdpDdaemon to org.apache.jmeter.JMeter#startUdpDaemon

Closes 6325
  • Loading branch information
linvaux authored and vlsi committed Sep 19, 2024
1 parent 8b25820 commit 7550111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/src/main/java/org/apache/jmeter/JMeter.java
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ void runNonGui(String testFile, String logFile, boolean remoteStart, String remo
testListener.setStartedRemoteEngines(engines);
distributedRunner.start();
}
startUdpDdaemon(engines);
startUdpDaemon(engines);
} catch (ConfigurationException e) {
throw e;
} catch (Exception e) {
Expand Down Expand Up @@ -1379,7 +1379,7 @@ public static boolean isNonGUI(){
return "true".equals(System.getProperty(JMeter.JMETER_NON_GUI)); //$NON-NLS-1$
}

private static void startUdpDdaemon(final List<? extends JMeterEngine> engines) {
private static void startUdpDaemon(final List<? extends JMeterEngine> engines) {
int port = JMeterUtils.getPropDefault("jmeterengine.nongui.port", UDP_PORT_DEFAULT); // $NON-NLS-1$
int maxPort = JMeterUtils.getPropDefault("jmeterengine.nongui.maxport", 4455); // $NON-NLS-1$
if (port > 1000){
Expand Down

0 comments on commit 7550111

Please sign in to comment.