fix(metadata): correctly read metadata svc resp

This commit is contained in:
Brian Waldon 2014-03-13 21:47:59 -07:00
parent a8a3b10277
commit a5e5505b51
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ func (ms *metadataService) UserData() ([]byte, error) {
} }
defer resp.Body.Close() defer resp.Body.Close()
if resp/100 != 2 { if resp.StatusCode / 100 != 2 {
return []byte{}, nil return []byte{}, nil
} }

View File

@ -61,7 +61,7 @@ func main() {
os.Exit(1) os.Exit(1)
} }
if userdata == "" { if len(userdata) == 0 {
log.Printf("No user data to handle, exiting.") log.Printf("No user data to handle, exiting.")
os.Exit(0) os.Exit(0)
} }