-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Reject port ranges in discovery.seed_hosts
#40786
Labels
>bug
:Distributed Coordination/Cluster Coordination
Cluster formation and cluster state publication, including cluster membership and fault detection.
help wanted
adoptme
v7.2.0
Comments
DaveCTurner
added
>bug
v7.0.0
:Distributed Coordination/Cluster Coordination
Cluster formation and cluster state publication, including cluster membership and fault detection.
labels
Apr 3, 2019
Pinging @elastic/es-distributed |
I'd like to work on this. Could you assign me please? |
Hi @Hohol, I can't assign issues outside of the Elastic organisation, but you're welcome to work on this. |
@DaveCTurner I've made a PR #41404 |
DaveCTurner
pushed a commit
that referenced
this issue
May 7, 2019
Today Elasticsearch accepts, but silently ignores, port ranges in the `discovery.seed_hosts` setting: ``` discovery.seed_hosts: 10.1.2.3:9300-9400 ``` Silently ignoring part of a setting like this is trappy. With this change we reject seed host addresses of this form. Closes #40786
DaveCTurner
pushed a commit
to DaveCTurner/elasticsearch
that referenced
this issue
May 7, 2019
Today Elasticsearch accepts, but silently ignores, port ranges in the `discovery.seed_hosts` setting: ``` discovery.seed_hosts: 10.1.2.3:9300-9400 ``` Silently ignoring part of a setting like this is trappy. With this change we reject seed host addresses of this form. Closes elastic#40786 Backport of elastic#41404
DaveCTurner
added a commit
that referenced
this issue
May 8, 2019
Today Elasticsearch accepts, but silently ignores, port ranges in the `discovery.seed_hosts` setting: ``` discovery.seed_hosts: 10.1.2.3:9300-9400 ``` Silently ignoring part of a setting like this is trappy. With this change we reject seed host addresses of this form. Closes #40786 Backport of #41404
gurkankaymak
pushed a commit
to gurkankaymak/elasticsearch
that referenced
this issue
May 27, 2019
Today Elasticsearch accepts, but silently ignores, port ranges in the `discovery.seed_hosts` setting: ``` discovery.seed_hosts: 10.1.2.3:9300-9400 ``` Silently ignoring part of a setting like this is trappy. With this change we reject seed host addresses of this form. Closes elastic#40786
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
>bug
:Distributed Coordination/Cluster Coordination
Cluster formation and cluster state publication, including cluster membership and fault detection.
help wanted
adoptme
v7.2.0
Today Elasticsearch accepts, but silently ignores, port ranges in the
discovery.seed_hosts
setting:Silently ignoring part of a setting is trappy and we should instead reject this setting if it contains port ranges like this.
The text was updated successfully, but these errors were encountered: