Class: ActionDispatch::Session::DynamodbStore Private
- Inherits:
-
DynamoDbStore
- Object
- AbstractStore
- DynamoDbStore
- ActionDispatch::Session::DynamodbStore
- Defined in:
- lib/action_dispatch/session/dynamo_db_store.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
-
#initialize(app, options = {}) ⇒ DynamodbStore
constructor
private
A new instance of DynamodbStore.
Methods inherited from DynamoDbStore
Constructor Details
#initialize(app, options = {}) ⇒ DynamodbStore
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of DynamodbStore.
76 77 78 79 80 81 |
# File 'lib/action_dispatch/session/dynamo_db_store.rb', line 76 def initialize(app, = {}) Rails.logger.warn('** Session Store :dynamodb_store configuration key has been renamed to :dynamo_db_store, ' \ 'please use the new key instead. The :dynamodb_store key name will be removed in ' \ 'aws-actiondispatch-dynamodb ~> 1 **') super end |