Closed duraki closed 5 years ago
For a quick and dirty fix:
struct Time
def epoch_ms
self.to_unix_ms
end
def epoch
self.to_unix
end
def self.epoch(ms : Int)
Time.new.to_unix
end
end
Making a PR for this now.
Thanks for #25 @Blacksmoke16 :)! Testing WIP.
@duraki This is now fixed in mosquito 0.3.0.
@robacarp Can probably close this now.
When we try to enqueue a job to task store, we get an issue:
epoch_ms
is removed in favour to Timesto_unix_ms
.