Skip to content

Commit

Permalink
Removed pipe argument (default is In/Out)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryaldrichiii committed Nov 22, 2017
1 parent 72a1253 commit 24946a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/train/transports/local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def start_named_pipe_server(pipe_name)
script = <<-EOF
$ErrorActionPreference = 'Stop'
$pipeServer = New-Object System.IO.Pipes.NamedPipeServerStream('#{pipe_name}', [System.IO.Pipes.PipeDirection]::InOut)
$pipeServer = New-Object System.IO.Pipes.NamedPipeServerStream('#{pipe_name}')
$pipeReader = New-Object System.IO.StreamReader($pipeServer)
$pipeWriter = New-Object System.IO.StreamWriter($pipeServer)
Expand Down

0 comments on commit 24946a1

Please sign in to comment.