From f1ccf60e4d2f7f9aa613783592b38fc3b15d2922 Mon Sep 17 00:00:00 2001 From: Richard K Miller Date: Wed, 27 Mar 2013 08:32:52 -0600 Subject: [PATCH] update the timestamp format in another location --- lib/Resque/Worker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Resque/Worker.php b/lib/Resque/Worker.php index 656ddd6..0ffe79c 100644 --- a/lib/Resque/Worker.php +++ b/lib/Resque/Worker.php @@ -454,7 +454,7 @@ public function workerPids() public function registerWorker() { Resque::redis()->sadd('workers', (string)$this); - Resque::redis()->set('worker:' . (string)$this . ':started', strftime('%a %b %d %H:%M:%S %Z %Y')); + Resque::redis()->set('worker:' . (string)$this . ':started', date('c')); } /**