mirror of
https://github.com/prometheus/prometheus
synced 2025-04-17 20:56:00 +00:00
handle NewSession() error
This commit is contained in:
parent
a1ddab463e
commit
64cef5cd05
@ -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 New Issue
Block a user