Skip to content

Commit

Permalink
Don't overwrite the queue-host if it's explicitly set
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemelia committed Jan 6, 2010
1 parent 3425d36 commit c35aba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/testjour/configuration.rb
Expand Up @@ -174,7 +174,7 @@ def parse_uri!
full_uri = URI.parse(@args.shift)
@path = full_uri.path
@full_uri = full_uri.dup
@queue_host = full_uri.host
@queue_host ||= full_uri.host
end

def run_slave_args
Expand Down

0 comments on commit c35aba1

Please sign in to comment.