Skip to content

Commit

Permalink
Deprecate native code info in xpack info api (#43297)
Browse files Browse the repository at this point in the history
The xpack info api currently returns native code info within each
feature. This commit deprecates retrieving that info, which is now
available directly in the ML info api.
  • Loading branch information
rjernst committed Jun 18, 2019
1 parent f6a06d8 commit a1942e4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,11 @@ public boolean enabled() {
return enabled;
}

/**
* Return native code info
* @deprecated Use ML info api to find native code info
*/
@Deprecated
@Nullable
public Map<String, Object> nativeCodeInfo() {
return nativeCodeInfo;
Expand Down

0 comments on commit a1942e4

Please sign in to comment.