Asha Somayajula

Results 34 comments of Asha Somayajula

No, I think using the plugin with the `true` tag it generates the report with a csv file. If i specify a report output file as jtl it doesn't work....

Any chance we can add the response times (avg, min, max) as thresholds as well?

Can we try based on the OS type -- lsof, netstat use for this? using ProcessBuilder

Well then reading the OS error codes, 98 (EADDRINUSE) or 10048 (WSAEADDRINUSE) ..somewhere in the error stack would do it?

```java try { serverSocket.setReuseAddress(false); serverSocket.bind(new InetSocketAddress(InetAddress.getByName("localhost"), 8080), 1); serverSocket.bind(new InetSocketAddress(InetAddress.getByName("localhost"), 8080), 1); } catch (SocketException be) { if(serverSocket.isBound()) { // this check here should do it. throw new BindException(be.getMessage()); }...

Well then we can translate the message/exception based on the lang/locale to en-US and then check for the port in use str?

> Well then we can translate the message/exception based on the lang/locale to en-US and then check for the port in use str? Any word here?

Hi @mbhave @maystefan @jzheaux is this still a bug to be worked on?

Hello, is there an agreement here on the approach to follow?