Reduce instance metadata request timeout to 2 seconds.

This commit is contained in:
Randall McPherson 2014-04-03 15:28:52 -04:00
Родитель e0f3049a9b
Коммит db42c85360
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -6,6 +6,7 @@ import (
"io/ioutil"
"net/http"
"os"
"time"
)
// Keys for an Amazon Web Services account.
@ -35,7 +36,7 @@ func InstanceKeys() (keys Keys, err error) {
// request the role name for the instance
// assumes there is only one
resp, err := http.Get(rolePath)
resp, err := ClientWithTimeout(2 * time.Second).Get(rolePath)
if err != nil {
return
}