mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
12 lines
209 B
Go
12 lines
209 B
Go
package statsd
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
/*
|
|
UDSTimeout holds the default timeout for UDS socket writes, as they can get
|
|
blocking when the receiving buffer is full.
|
|
*/
|
|
const defaultUDSTimeout = 1 * time.Millisecond
|