jrds icon indicating copy to clipboard operation
jrds copied to clipboard

Possible NPE in HcHttpProbe

Open panthony opened this issue 10 years ago • 0 comments

Offending piece of code:

    public Map<String, Number> getNewSampleValues() {
        log(Level.DEBUG, "Getting %s", getUrl());
        HttpClientStarter httpstarter = find(HttpClientStarter.class);
        HttpClient cnx = httpstarter.getHttpClient();

The method find() may return NULL if the class is not found.

panthony avatar Aug 06 '15 08:08 panthony