Skip to content

Commit

Permalink
Use correct transport version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmitterdorfer committed Oct 5, 2023
1 parent a37dc3e commit af6234b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ static TransportVersion def(int id) {
public static final TransportVersion NODE_INFO_REQUEST_SIMPLIFIED = def(8_510_00_0);
public static final TransportVersion NESTED_KNN_VECTOR_QUERY_V = def(8_511_00_0);
public static final TransportVersion ML_PACKAGE_LOADER_PLATFORM_ADDED = def(8_512_00_0);
public static final TransportVersion UNIVERSAL_PROFILING_LICENSE_ADDED = def(8_513_00_0);

/*
* STOP! READ THIS FIRST! No, really,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public ProfilingUsage(boolean available, boolean enabled) {

@Override
public TransportVersion getMinimalSupportedVersion() {
// TODO: This should probably say 8.11.0 but I'm not certain. Check with somebody what's appropriate.
return TransportVersions.V_8_8_1;
return TransportVersions.UNIVERSAL_PROFILING_LICENSE_ADDED;
}
}

0 comments on commit af6234b

Please sign in to comment.