Skip to content

Commit

Permalink
[rb] don't set chrome childprocess as leader on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtierney committed Feb 17, 2017
1 parent 85389a9 commit c861fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/chrome/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def start_process
@process = ChildProcess.build(*server_command)

@process.io.inherit! if $DEBUG
@process.leader = true
@process.leader = true unless Platform.windows?
@process.start
end

Expand Down

0 comments on commit c861fe7

Please sign in to comment.