Skip to content

Commit

Permalink
Update Beats to use go 1.11.2 (elastic#8746)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjsamuel authored and ruflin committed Nov 22, 2018
1 parent 960579d commit 955077c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.10.3
FROM golang:1.11.2
MAINTAINER Noémi Ványi <noemi.vanyi@elastic.co>

RUN set -x && \
Expand Down
4 changes: 2 additions & 2 deletions checkpoint/file_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func createWriteThroughFile(path string) (*os.File, error) {
pathp, // Path
syscall.GENERIC_READ|syscall.GENERIC_WRITE, // Access Mode
uint32(syscall.FILE_SHARE_READ|syscall.FILE_SHARE_WRITE), // Share Mode
nil, // Security Attributes
syscall.CREATE_ALWAYS, // Create Mode
nil, // Security Attributes
syscall.CREATE_ALWAYS, // Create Mode
uint32(syscall.FILE_ATTRIBUTE_NORMAL|_FILE_FLAG_WRITE_THROUGH), // Flags and Attributes
0) // Template File

Expand Down

0 comments on commit 955077c

Please sign in to comment.