Skip to content

Commit

Permalink
fix(scaleway): make sure to always select the right record type
Browse files Browse the repository at this point in the history
  • Loading branch information
aerialls committed Jun 26, 2020
1 parent 38ab86a commit a152824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaleway/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (d *DNS) UpdateRecord(domain string, name string, ttl uint32, data string,
{
Set: &domainAPI.RecordChangeSet{
Name: name,
Type: domainAPI.RecordTypeA,
Type: d.getRecordTypeFromString(recordType),
Records: []*domainAPI.Record{
{
Name: name,
Expand Down

0 comments on commit a152824

Please sign in to comment.