Skip to content

Commit

Permalink
tone it down a tad
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Dunn authored and hashrocketeer committed Jul 13, 2012
1 parent 0d42777 commit 1c64927
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/flatware/cli.rb
Expand Up @@ -28,7 +28,7 @@ def mux

desc "dispatch", "fire up the dispatcher to distribute tests"
def dispatch
Dispatcher.dispatch!
Dispatcher.start
end

desc "work", "request and perform work from a dispatcher"
Expand All @@ -45,7 +45,7 @@ def default
jobs = Cucumber.extract_jobs_from_args []
fork do
log "dispatch"
Dispatcher.dispatch! jobs
Dispatcher.start jobs
end
log "bossman"
Sink.start_server jobs
Expand Down
2 changes: 1 addition & 1 deletion lib/flatware/dispatcher.rb
Expand Up @@ -2,7 +2,7 @@ module Flatware
class Dispatcher
DISPATCH_PORT = 'ipc://dispatch'

def self.dispatch!(jobs=Cucumber.jobs)
def self.start(jobs=Cucumber.jobs)
new(jobs).dispatch!
end

Expand Down

0 comments on commit 1c64927

Please sign in to comment.