Protect against expiry nil
This commit is contained in:
parent
ec4dc68524
commit
ef422e6988
2 changed files with 2 additions and 1 deletions
|
@ -117,7 +117,7 @@ func (machine Machine) isExpired() bool {
|
|||
// If Expiry is not set, the client has not indicated that
|
||||
// it wants an expiry time, it is therefor considered
|
||||
// to mean "not expired"
|
||||
if machine.Expiry.IsZero() {
|
||||
if machine.Expiry == nil || machine.Expiry.IsZero() {
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue