Skip to content

Commit

Permalink
Add model Id to starting deployment message
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Nov 22, 2023
1 parent e100384 commit 281d08d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ ProcessContext addProcessContext(Long id, ProcessContext processContext) {
}

public void startDeployment(TrainedModelDeploymentTask task, ActionListener<TrainedModelDeploymentTask> finalListener) {
logger.info("[{}] Starting model deployment", task.getDeploymentId());
logger.info("[{}] Starting model deployment of model [{}]", task.getDeploymentId(), task.getModelId());

if (processContextByAllocation.size() >= maxProcesses) {
finalListener.onFailure(
Expand Down

0 comments on commit 281d08d

Please sign in to comment.