Skip to content

Commit 46bf27d

Browse files
committed
moves attribute to the correct location
1 parent 81f9e56 commit 46bf27d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/flipper/adapters/active_support_cache_store.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ module Flipper
66
module Adapters
77
# Public: Adapter that wraps another adapter with the ability to cache
88
# adapter calls in ActiveSupport::ActiveSupportCacheStore caches.
9+
class ActiveSupportCacheStore < CacheBase
910

10-
# Public: The race_condition_ttl for all cached data.
11-
attr_reader :race_condition_ttl
11+
# Public: The race_condition_ttl for all cached data.
12+
attr_reader :race_condition_ttl
1213

13-
class ActiveSupportCacheStore < CacheBase
1414
def initialize(adapter, cache, ttl = nil, expires_in: :none_provided, race_condition_ttl: nil, write_through: false, prefix: nil)
1515
if expires_in == :none_provided
1616
ttl ||= nil

0 commit comments

Comments
 (0)