Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[FrameworkBundle][Server Command] add address port number option.#14383
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
dosten commentedApr 17, 2015
👍 |
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.
I think we should rather pass the built address here instead of doing this all again.
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.
done
f4126bf to83dbaaeCompareThere 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.
Can you revert this change (i.e. moving the blank line down again)?
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.
reverted
83dbaae tofbe1a43Comparexabbuh commentedApr 17, 2015
👍 |
1 similar comment
stof commentedApr 18, 2015
👍 |
fabpot commentedApr 18, 2015
Thank you@aitboudad. |
…ber option. (aitboudad)This PR was merged into the 2.8 branch.Discussion----------[FrameworkBundle][Server Command] add address port number option.| Q | A| ------------- | ---| Bug fix? | no| New feature? | yes| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets | ~| License | MIT| Doc PR | ~This allow running server without repeating `127.0.0.1` each time, in the most of case we only change the port number.* Before```app/console server:start 127.0.0.1:8080```* After```app/console server:start -p 8080```Commits-------fbe1a43 [FrameworkBundle][Server Command] add address port number option.
This allow running server without repeating
127.0.0.1each time, in the most of case we only change the port number.