Skip to content

Commit edd61af

Browse files
committed
Changed require statements to use aws-sdk-v1.
1 parent fa25f19 commit edd61af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/aws/session_store/dynamo_db/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# language governing permissions and limitations under the License.
1313

1414
require 'yaml'
15-
require 'aws-sdk'
15+
require 'aws-sdk-v1'
1616

1717
module AWS::SessionStore::DynamoDB
1818
# This class provides a Configuration object for all DynamoDB transactions

lib/aws/session_store/dynamo_db/garbage_collection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313

14-
require 'aws-sdk'
14+
require 'aws-sdk-v1'
1515

1616
module AWS::SessionStore::DynamoDB
1717
# Collects and deletes unwanted sessions based on

lib/aws/session_store/dynamo_db/rack_middleware.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
require 'rack/session/abstract/id'
1515
require 'openssl'
16-
require 'aws-sdk'
16+
require 'aws-sdk-v1'
1717

1818
module AWS::SessionStore::DynamoDB
1919
# This class is an ID based Session Store Rack Middleware

lib/aws/session_store/dynamo_db/table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313

14-
require 'aws-sdk'
14+
require 'aws-sdk-v1'
1515
require 'logger'
1616

1717
module AWS::SessionStore::DynamoDB

0 commit comments

Comments
 (0)