You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In HLRC we can set slices to auto passing 0 as argument:
ParamswithSlices(intslices) {
if (slices == 0) {
// translate to "auto" value in rest request so the receiving end doesn't throw errorreturnputParam("slices", AbstractBulkByScrollRequest.AUTO_SLICES_VALUE);
}
returnputParam("slices", String.valueOf(slices));
}
There is no such option in new java client:
if (request.slices != null) {
params.put("slices", String.valueOf(request.slices));
}
The text was updated successfully, but these errors were encountered:
In HLRC we can set slices to auto passing 0 as argument:
There is no such option in new java client:
The text was updated successfully, but these errors were encountered: