-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Fix default value method for allow_remote_access
when ip is '*'
#4139
Fix default value method for allow_remote_access
when ip is '*'
#4139
Conversation
I can confirm that this fixes #3946 and it seems like a decent solution to me. @takluyver Care to merge? |
is this fix in 5.7.4? I'm seeing #3946 with 5.7.4 on Linux at the moment. |
@michaelaye doesn't look like it is - all releases from 5.7.0 - 5.7.4 all say "120 commits to master since this tag" - looks like those releases are mostly backports. This PR is still only in master. |
@takluyver - is there an ETA for 5.8? If still unknown or weeks away, this seems like a good candidate for a 5.7.5 tag due to recent occurrences. |
@takluyver I can prep a new release. Are you waiting on anything? |
@gnestor Is there any update on the 5.8 ETA or getting this into a 5.7.x release? |
@takluyver @minrk Are we waiting on anything in particular to make a new release? |
Fixes #3946. When the config value for
ip
is set to*
, meaning listen on all interfaces, it causes the default value method for theallow_remote_access
config option to fail. This PR adds a short circuit for that default value method.I didn't see an obvious place to put a new test, but on my local machine, this actually fixes a currently failing one.