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:
parent
4124fbc79e
commit
73c211d660
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue