Merge pull request #90 from skriss/change-azure-apitimeout

change Azure API timeout default to 2m
This commit is contained in:
Andy Goldstein
2017-09-14 09:38:09 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ func NewBlockStorageAdapter(location string, apiTimeout time.Duration) (cloudpro
}
if apiTimeout == 0 {
apiTimeout = time.Minute
apiTimeout = 2 * time.Minute
}
cfg := getConfig()