use of com.linecorp.armeria.common.HttpMethod.DELETE in project zipkin by openzipkin.
the class ITEnsureIndexTemplate method http.
void http(HttpMethod method, String path) throws IOException {
AggregatedHttpRequest delete = AggregatedHttpRequest.of(method, path);
Internal.instance.http(storage).newCall(delete, (parser, contentString) -> null, method + "-" + path).execute();
}
Aggregations