From c51bd86dda107dd123c396f8dd11f06a06cc6a83 Mon Sep 17 00:00:00 2001 From: Tyler Calderone Date: Thu, 12 Feb 2015 14:27:45 -0800 Subject: [PATCH] Fix typo in README A typo in the comments of a ruby block has a typo. It states priority is defaulted to zero, but in actuality it is 65536 as stated here: https://github.com/kr/beanstalk-client-ruby/blob/master/lib/beanstalk-client/connection.rb#L53 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc716f0..a3d1ab9 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ You can also specify additional metadata to control job processing parameters. S you can set the `priority`, `delay`, and `ttr` of a particular job: ```ruby -# defaults are priority 0, delay of 0 and ttr of 120 seconds +# defaults are priority 65536, delay of 0 and ttr of 120 seconds @beanstalk.put "job-data-here", 1000, 50, 200 ```