Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Oct 2, 2023
1 parent ff68b31 commit 0691076
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;

import org.apache.hc.core5.http.ParseException;
import org.apache.hc.core5.http.io.entity.EntityUtils;
import org.apache.http.util.EntityUtils;
import org.opensearch.client.Request;
import org.opensearch.client.Response;
import org.opensearch.plugins.Plugin;
Expand All @@ -31,7 +30,7 @@ protected Collection<Class<? extends Plugin>> nodePlugins() {
return Collections.singletonList(FlowFrameworkPlugin.class);
}

public void testPluginInstalled() throws IOException, ParseException {
public void testPluginInstalled() throws IOException {
Response response = createRestClient().performRequest(new Request("GET", "/_cat/plugins"));
String body = EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8);

Expand Down

0 comments on commit 0691076

Please sign in to comment.