From 9c02814fca24d36da87d9c2da9d4f2d82d11f5c7 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Wed, 6 May 2020 21:22:59 -0400 Subject: [PATCH] fixed bug on delayed actions. --- lib/aethyr/core/components/manager.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/aethyr/core/components/manager.rb b/lib/aethyr/core/components/manager.rb index 4120397..2c88a46 100644 --- a/lib/aethyr/core/components/manager.rb +++ b/lib/aethyr/core/components/manager.rb @@ -452,6 +452,6 @@ class Manager < Publisher private def self.epoch_now - return DateTime.now.strftime('%s') + return DateTime.now.strftime('%s').to_i end end -- GitLab