Why strong rotation

In ClusterHealthResponse
that
int numberOfNodes = (int) parsedObjects[i++]; int numberOfDataNodes = (int) parsedObjects[i++]; int activeShards = (int) parsedObjects[i++]; int relocatingShards = (int) parsedObjects[i++]; int activePrimaryShards = (int) parsedObjects[i++]; int initializingShards = (int) parsedObjects[i++]; int unassignedShards = (int) parsedObjects[i++]; double activeShardsPercent = (double) parsedObjects[i++];

I don't know Why strong rotation

I have absolutely no idea what you are talking about, when you post a small code snippet and a three word question. Please take some time to write up a proper issue, provide some context, your expectations and what does not match. Such a post is not helpful for most people reading it and will reduce your changes of a good answer.

Thank you!

I think int numberOfNodes = (int) parsedObjects[i++] do not need type cast,for example

int numberOfNodes = parsedObjects[i++]

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.