Merge pull request #2 from jtom38/features/rest-fix
sending now a patch request to update the IP
This commit is contained in:
commit
3b017b5daa
@ -225,7 +225,7 @@ func (c *CloudFlareClient) UpdateDnsEntry(DomainId string, DnsDetails *DnsDetail
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
req, err := http.NewRequest("GET", endpoint, bytes.NewBuffer(body))
|
req, err := http.NewRequest("PATCH", endpoint, bytes.NewBuffer(body))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -243,6 +243,6 @@ func (c *CloudFlareClient) UpdateDnsEntry(DomainId string, DnsDetails *DnsDetail
|
|||||||
return errors.New("failed to update the IP address")
|
return errors.New("failed to update the IP address")
|
||||||
}
|
}
|
||||||
|
|
||||||
//log.Print(resp)
|
log.Println("IP Address request was sent and no errors reported.")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user