Skip to content

Commit

Permalink
Added a fix to SQS worker -- it wasn't calling super().
Browse files Browse the repository at this point in the history
  • Loading branch information
dbalatero committed Jun 6, 2009
1 parent ad5e99a commit 3563a18
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/queue_stick/sqs_worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class SQSWorker < Worker
@@visibility_timeouts = Hash.new { |h, k| h[k] = 60 }

def initialize
super
@sqs = RightAws::SqsGen2.new(self.class.aws_access_key_id,
self.class.aws_secret_access_key,
:multi_thread => false,
Expand Down

0 comments on commit 3563a18

Please sign in to comment.