Is there a bug in the following code: ``` err := server.lock.LockWithRetries(utils.GetLockName(name, spec), schedule.Next(time.Now()).UnixNano()-1) if err != nil { return # returns nil; expect err } ``` See: - https://github.com/RichardKnop/machinery/blob/ef4a2e724ade48874185ce0ca7542355fe4aa9be/v1/server.go#L397 - https://github.com/RichardKnop/machinery/blob/ef4a2e724ade48874185ce0ca7542355fe4aa9be/v2/server.go#L337