-
Notifications
You must be signed in to change notification settings - Fork 888
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
Changed 'host' and 'port' configuration to a new 'listen' style that … #2847
Conversation
@mfrlin please sign CONTRIBUTORS.txt Remember to pull from Pylons/pyramid first to get the latest version of CONTRIBUTORS.txt. Otherwise LGTM. |
@mfrlin would you add a change note, too? https://github.com/Pylons/pyramid/blob/master/CHANGES.txt |
Thank you! |
@@ -27,8 +27,7 @@ sqlalchemy.url = sqlite:///%(here)s/tutorial.sqlite | |||
|
|||
[server:main] | |||
use = egg:waitress#main | |||
host = 127.0.0.1 | |||
port = 6543 | |||
list = 127.0.0.1:6543 |
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.
uh.... list is not listen.
@@ -16,8 +16,7 @@ sqlalchemy.url = sqlite:///%(here)s/tutorial.sqlite | |||
|
|||
[server:main] | |||
use = egg:waitress#main | |||
host = 0.0.0.0 | |||
port = 6543 | |||
list = 0.0.0.0:6543 |
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.
so much list
This should not have been merged without more carefully checking the PR for typo's and errors... |
There are a bunch of |
I've reverted this commit, follow the instructions in #2851 for updating this PR to be correct. Thanks. |
There is a new PR here #2853 |
…is now supported by waitress server.
This should partly complete #2656