Skip to content

Commit

Permalink
Remove d L at end of actionGet int
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
  • Loading branch information
MitchellGale committed Aug 11, 2023
1 parent 1dab611 commit 070bcd3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ protected MLPredictionOutput getMLPredictionResult(FunctionName functionName,

return (MLPredictionOutput) machineLearningClient
.trainAndPredict(mlinput)
.actionGet(30L, TimeUnit.SECONDS);
.actionGet(30, TimeUnit.SECONDS);
}

/**
Expand All @@ -246,7 +246,7 @@ protected MLOutput getMLOutput(DataFrame inputDataFrame,

return machineLearningClient
.run(mlinput, arguments)
.actionGet(30L, TimeUnit.SECONDS);
.actionGet(30, TimeUnit.SECONDS);
}

/**
Expand Down

0 comments on commit 070bcd3

Please sign in to comment.