mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-11 09:51:16 -04:00
Ensure initialMmapSize is 0 on Windows (#14977)
* ensure initialMmapSize is 0 on windows * add changelog
This commit is contained in:
parent
ec1a3cfbed
commit
bacfe5abba
3 changed files with 5 additions and 2 deletions
3
changelog/14977.txt
Normal file
3
changelog/14977.txt
Normal file
|
|
@ -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 a new issue