Replies: 1 comment
-
You'll have to deal with it, our CLI tools are not aware of how the node was started and making them aware sounds like a waste of time of our small team. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Hello. I’m aware of the Windows-specific requirement to set net_ticktime via an environment variable rather than just in rabbitmq.conf.
However, I’ve noticed an inconsistency in the output of the following commands when I only set net_ticktime = 120 in rabbitmq.conf (without defining it as an environment variable):
rabbitmqctl.bat report | findstr "net_ticktime"
Outputs:
{net_ticktime,120},
Whereas:
rabbitmqctl.bat status | findstr "net_ticktime"
Returns:
Cluster heartbeat timeout (net_ticktime): 60
This is confusing, as the values should match.
Reproduction steps
net_ticktime = 120
rabbitmqctl.bat report | findstr "net_ticktime"
-> 120rabbitmqctl status | findstr "net_ticktime"
-> 60Expected behavior
If net_ticktime is ignored from rabbitmq.conf on Windows (as documented), I would expect both commands to report the default value (60). Alternatively, if rabbitmqctl.bat report shows 120, it implies that the config was parsed — which contradicts the behavior of rabbitmqctl status.
Is this a known issue? Shouldn’t both outputs reflect the same effective setting?
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions