Class: ActionDispatch::Session::DynamodbStore Private

Inherits:
DynamoDbStore
  • Object
show all
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

Methods inherited from DynamoDbStore

#config

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, options = {})
  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