7a4eda156c
This also removes `godep` calls from make scripts. Of note is that currently `./...` checking in acceptance tests is disabled.
13 lines
153 B
Go
13 lines
153 B
Go
// +build !windows
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const (
|
|
// DefaultSignal is used with DefaultInmemSignal
|
|
DefaultSignal = syscall.SIGUSR1
|
|
)
|