Ensure initialMmapSize is 0 on Windows (#14977)

* ensure initialMmapSize is 0 on windows

* add changelog
This commit is contained in:
Josh Black 2022-04-08 12:07:21 -07:00 committed by GitHub
parent ec1a3cfbed
commit bacfe5abba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

3
changelog/14977.txt Normal file
View file

@ -0,0 +1,3 @@
```release-note:bug
raft: Ensure initialMmapSize is set to 0 on Windows
```

View file

@ -1,4 +1,4 @@
//go:build 386 || arm
//go:build 386 || arm || windows
package raft

View file

@ -1,4 +1,4 @@
//go:build !386 && !arm
//go:build !386 && !arm && !windows
package raft