builds again

This commit is contained in:
Jeffrey Paul 2019-11-03 03:09:04 -08:00
parent fec35a8336
commit 3f5f386395
2 changed files with 8 additions and 6 deletions

View File

@ -28,6 +28,8 @@ type Instance struct {
errorCount uint
highestId int
hostName string
up bool
identified bool
impl ServerImplementation
lastError *time.Time
lastSuccess *time.Time
@ -51,16 +53,14 @@ func NewInstance(hostname string) *Instance {
func (i *Instance) setNextCheck(d *time.Duration) {
i.Lock()
defer i.Unlock()
i.nextCheck = d
then := time.Now().Add(*d)
i.nextCheck = &then
}
func (i *Instance) dueForCheck() bool {
i.Lock()
defer i.Unlock()
if i.nextCheck <= time.Now() {
return true
}
return false
return i.nextCheck.Before(time.Now())
}
func (i *Instance) detectNodeType() {

View File

@ -5,5 +5,7 @@ package main
type Toot struct {
}
func NewToot(input []bytes) *Toot {
func NewToot(input []byte) *Toot {
t := new(Toot)
return t
}