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 5f80aec3c7
commit 41a4b7a170
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