-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix #15
base: develop
Are you sure you want to change the base?
bugfix #15
Conversation
@@ -198,7 +198,7 @@ def print_execute_reroutes(es_host, commands): | |||
raise BalanceException('User exited serial rerouting!') | |||
|
|||
cluster_update_interval = get_transient_cluster_settings( | |||
es_host, 'cluster.info.update.interval', | |||
es_host, ['cluster.info.update.interval'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this being a list or a string depend on the version of ES we're using?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok cool
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds like a sensible change. What's the bug being fixed?
@@ -198,7 +198,7 @@ def print_execute_reroutes(es_host, commands): | |||
raise BalanceException('User exited serial rerouting!') | |||
|
|||
cluster_update_interval = get_transient_cluster_settings( | |||
es_host, 'cluster.info.update.interval', | |||
es_host, ['cluster.info.update.interval'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gchazot specifically this line here, if you pass it in as a string it's splitting on each individual letter instead of list items. I'm very surprised this hasn't come up before tbh... |
What's the status on this? It looks like this might be ready to merge and a new release of the tool could be published...? |
Yep it can, I'll deal with it today |
Purpose of PR
Parts of the app this will impact
Todos
Additional information
Related links