3 Commits

Author SHA1 Message Date
c7251e11e2 Merge branch 'hotfix/v0.0.3' 2011-02-22 12:05:41 +00:00
18c89b1e0f fixed an issue with loading configs 2011-02-22 12:05:26 +00:00
bc69e8970e Version bump to 0.0.3 2011-02-22 12:04:44 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ module AMQP
attr_accessor :last_fail
def initialize(hash = {}, last_fail_date = nil)
self.replace(symbolize_keys(defaults.merge(hash)))
self.replace(defaults.merge(symbolize_keys(hash)))
self.last_fail = last_fail_date if last_fail_date
end

View File

@@ -2,6 +2,6 @@
module AMQP
class Failover
VERSION = "0.0.2"
VERSION = "0.0.3"
end
end