From 76c06a1349b2dc2a129936b2af3f863aa63aed7d Mon Sep 17 00:00:00 2001 From: Chaitanya Kuber Date: Thu, 22 Mar 2012 12:20:16 +0800 Subject: [PATCH] now setting the queue name onto the job instance --- lib/Resque/Job.php | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 lib/Resque/Job.php diff --git a/lib/Resque/Job.php b/lib/Resque/Job.php old mode 100644 new mode 100755 index e2002ad..0d275a1 --- a/lib/Resque/Job.php +++ b/lib/Resque/Job.php @@ -159,6 +159,7 @@ class Resque_Job $this->instance = new $this->payload['class'](); $this->instance->job = $this; $this->instance->args = $this->getArguments(); + $this->instance->queue = $this->queue; return $this->instance; }