1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fix the number where credentials expire - if too high, other tests will fail.

This commit is contained in:
Bohuslav Kabrda 2012-06-29 15:39:35 +02:00
parent 4124fbc79e
commit 73c211d660

View file

@ -210,7 +210,7 @@ module Fog
def initialize(options={})
@use_iam_profile = options[:use_iam_profile]
@aws_credentials_expire_at = Time::now + 1000
@aws_credentials_expire_at = Time::now + 20
setup_credentials(options)
@region = options[:region] || 'us-east-1'