mirror of
https://github.com/prometheus/prometheus.git
synced 2026-04-29 02:01:14 -04:00
handle NewSession() error
This commit is contained in:
parent
a1ddab463e
commit
64cef5cd05
1 changed files with 4 additions and 1 deletions
|
|
@ -1128,7 +1128,10 @@ func (c *EC2SDConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|||
return err
|
||||
}
|
||||
if c.Region == "" {
|
||||
sess := session.Must(session.NewSession())
|
||||
sess, err := session.NewSession()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
metadata := ec2metadata.New(sess)
|
||||
region, err := metadata.Region()
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue