Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.9.0
-
Fix Version/s: 0.9.2
-
Component/s: None
-
Labels:None
Description
This is caused by a bug in the retry logic:
>> retries = 0
=> 0
>> retries += 1 <= 1
TypeError: true can't be coerced into Fixnum
from (irb):5:in `+'
from (irb):5
>> retries += 1
=> 1
>> (retries += 1) <= 1
=> false
Please pull from nuoyan/chef/
CHEF-1373