Skip to content
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

start invoker at a port specified from cli #147

Merged
merged 2 commits into from
Sep 21, 2015
Merged

Conversation

goromlagche
Copy link
Contributor

Currently invoker accepts a port from cli, increments it by 1, and then starts the process at that port.

invoker start ./invoker.ini -d --port 9000
ivg : Puma starting in single mode...
ivg : * Version 2.12.2 (ruby 2.2.3-p173), codename: Plutonian Photo Shoot
ivg : * Min threads: 0, max threads: 16
ivg : * Environment: development
ivg : * Listening on tcp://0.0.0.0:9001
ivg : Use Ctrl-C to stop

This deteres a user from running invoker on a port of her choice.


command2 = config.processes[1]

expect(command2.port).to eq(9002)
expect(command2.cmd).to match(/9002/)
expect(command2.port).to eq(9000)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be port 9000 for all servers?

initialize takes a port form cli and decrements it by 1 and sets the
instance variable @PORT. This port value is used as the environment
variable $PORT inside invoker.ini. When method pick_port gets fired it
increments the value of port by 1, subsequently when pick_port again
gets fired, for another command, it will again increment port value
by 1, that way generating different ports for different commands.
iffyuva added a commit that referenced this pull request Sep 21, 2015
start invoker at a port specified from cli
@iffyuva iffyuva merged commit 3b67e95 into master Sep 21, 2015
@iffyuva iffyuva deleted the start-at-specified-port branch September 21, 2015 07:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants