mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 02:45:42 +03:00
11 lines
311 B
Go
11 lines
311 B
Go
package structs
|
|
|
|
import "errors"
|
|
|
|
// CheckBufSize is the size of the buffer that is used for job output
|
|
const CheckBufSize = 4 * 1024
|
|
|
|
// DriverStatsNotImplemented is the error to be returned if a driver doesn't
|
|
// implement stats.
|
|
var DriverStatsNotImplemented = errors.New("stats not implemented for driver")
|