Skip to content

Commit

Permalink
Merge pull request #1495 from m1lt0n/respond_to
Browse files Browse the repository at this point in the history
fall back to standard implementation of respond_to? for data store
  • Loading branch information
Chris C Cerami committed Feb 13, 2017
2 parents 6073202 + bb8d014 commit e3072bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resque/data_store.rb
Expand Up @@ -61,7 +61,7 @@ def method_missing(sym,*args,&block)

# make use respond like redis
def respond_to?(method,include_all=false)
@redis.respond_to?(method,include_all)
@redis.respond_to?(method,include_all) || super
end

# Get a string identifying the underlying server.
Expand Down

0 comments on commit e3072bc

Please sign in to comment.