mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
9b6795c6d6
Bumps [github.com/hashicorp/vault](https://github.com/hashicorp/vault) from 1.9.9 to 1.11.9. - [Release notes](https://github.com/hashicorp/vault/releases) - [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/vault/compare/v1.9.9...v1.11.9) --- updated-dependencies: - dependency-name: github.com/hashicorp/vault dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
196 B
Go
14 lines
196 B
Go
// +build windows
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const (
|
|
// DefaultSignal is used with DefaultInmemSignal
|
|
// Windows has no SIGUSR1, use SIGBREAK
|
|
DefaultSignal = syscall.Signal(21)
|
|
)
|