Skip to content

Commit

Permalink
Fix error message in TransportDeplpoyModelAction class
Browse files Browse the repository at this point in the history
Signed-off-by: Sicheng Song <[email protected]>
  • Loading branch information
b4sjoo committed Sep 24, 2023
1 parent ff0d734 commit 536e7d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@ protected void doExecute(Task task, ActionRequest request, ActionListener<MLDepl
listener.onFailure(e);
}));
}, e -> {
log.error("Failed to deploy model " + modelId, e);
log.error("Failed to get ML model " + modelId, e);
listener.onFailure(e);
}));
} catch (Exception e) {
log.error("Failed to get ML model " + modelId, e);
log.error("Failed to deploy model " + modelId, e);
listener.onFailure(e);
}

Expand Down

0 comments on commit 536e7d6

Please sign in to comment.