Skip to content

Commit 4664068

Browse files
HLRC: Fix Compile Error From Missing Throws (#33083)
* 50441f9#diff-53a95fe7ded21313483f1b2f15977395L72 removed the throws breaking compilation here
1 parent f45dd0a commit 4664068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/rest-high-level/src/main/java/org/elasticsearch/client/MLRequestConverters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static Request getJob(GetJobRequest getJobRequest) {
7070
return request;
7171
}
7272

73-
static Request openJob(OpenJobRequest openJobRequest) {
73+
static Request openJob(OpenJobRequest openJobRequest) throws IOException {
7474
String endpoint = new EndpointBuilder()
7575
.addPathPartAsIs("_xpack")
7676
.addPathPartAsIs("ml")

0 commit comments

Comments
 (0)