Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Feb 21, 2017
1 parent b8cd5db commit 4e8aa11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ InetSocketAddress start() throws IOException {
InputStream socketIn = incomingSocket.getInputStream();
OutputStream socketOut = incomingSocket.getOutputStream();
new Thread(() -> {
try (RandomAccessFile randomAccessFile = new RandomAccessFile(NAMED_PIPE_FILE_NAME, "rwd")) {
try (RandomAccessFile randomAccessFile = new RandomAccessFile(NAMED_PIPE_FILE_NAME, "rw")) {

log.info("Created RandomAccessFile from " + NAMED_PIPE_FILE_NAME);

Expand Down

0 comments on commit 4e8aa11

Please sign in to comment.