mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-24 07:10:20 +00:00
aa4271a32a
even 1.9.9 i havign security vulnerabilities https://github.com/ceph/ceph-csi/actions/ \runs/5088482029/jobs/9144940410?pr=3859 updating the vault to latest release and all other updates are due to the dependency update by `go mod tidy` Signed-off-by: Madhu Rajanna <madhupr007@gmail.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)
|
|
)
|