mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
15 lines
360 B
Go
15 lines
360 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package structs
|
|
|
|
// AllocUpdatePriority indicates the urgency of an allocation update so that the
|
|
// client can decide whether to wait longer
|
|
type AllocUpdatePriority int
|
|
|
|
const (
|
|
AllocUpdatePriorityNone AllocUpdatePriority = iota
|
|
AllocUpdatePriorityTypical
|
|
AllocUpdatePriorityUrgent
|
|
)
|