diff --git a/lib/fog/aws/dynamodb.rb b/lib/fog/aws/dynamodb.rb index a4a5a3d90..b1891e40f 100644 --- a/lib/fog/aws/dynamodb.rb +++ b/lib/fog/aws/dynamodb.rb @@ -85,7 +85,7 @@ module Fog @host = options[:host] || "dynamodb.#{@region}.amazonaws.com" @path = options[:path] || '/' @persistent = options[:persistent] || false - @port = options[:port] || '80' #443 + @port = options[:port] || '443' @scheme = options[:scheme] || 'https' @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)