agent/structs: check is alias if node is empty

pull/4320/head
Mitchell Hashimoto 7 years ago
parent 36e330941a
commit 5bc27feb0b
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A

@ -77,7 +77,7 @@ func (c *CheckType) Empty() bool {
// IsAlias checks if this is an alias check.
func (c *CheckType) IsAlias() bool {
return c.AliasService != ""
return c.AliasNode != "" || c.AliasService != ""
}
// IsScript checks if this is a check that execs some kind of script.

Loading…
Cancel
Save