mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-25 06:16:40 +00:00
[TEST] Fix issue with HttpInfo passed invalid parameter
HttpInfo is passed the maxContentLength as a parameter, but this value should never be negative. This fixes the test to only pass a positive random value.
This commit is contained in:
parent
b4c78019b0
commit
7df66abaf5
@ -137,7 +137,7 @@ public class NodeInfoStreamingTests extends ESTestCase {
|
||||
new TransportAddress[]{buildNewFakeTransportAddress()}, buildNewFakeTransportAddress());
|
||||
profileAddresses.put("test_address", dummyBoundTransportAddress);
|
||||
TransportInfo transport = randomBoolean() ? null : new TransportInfo(dummyBoundTransportAddress, profileAddresses);
|
||||
HttpInfo httpInfo = randomBoolean() ? null : new HttpInfo(dummyBoundTransportAddress, randomLong());
|
||||
HttpInfo httpInfo = randomBoolean() ? null : new HttpInfo(dummyBoundTransportAddress, randomNonNegativeLong());
|
||||
|
||||
PluginsAndModules pluginsAndModules = null;
|
||||
if (randomBoolean()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user