Ensure initialMmapSize is 0 on Windows (#14977)
* ensure initialMmapSize is 0 on windows * add changelog
This commit is contained in:
parent
5f80aec3c7
commit
41a4b7a170
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
raft: Ensure initialMmapSize is set to 0 on Windows
|
||||
```
|
|
@ -1,4 +1,4 @@
|
|||
//go:build 386 || arm
|
||||
//go:build 386 || arm || windows
|
||||
|
||||
package raft
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//go:build !386 && !arm
|
||||
//go:build !386 && !arm && !windows
|
||||
|
||||
package raft
|
||||
|
||||
|
|
Loading…
Reference in New Issue