Skip to content

Commit 23a4b31

Browse files
authored
BIND: add missing implementation for ZoneCreator (#3980)
# Issue The change of the interface introduced in 4.27.1 causes some issues if the zone does not exist and we're running the preview command. # Resolution Fix the signature for EnsureZoneExists() in BIND so that it can be used as a zone-creator. Fixes #3939
1 parent 5fe3523 commit 23a4b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/bind/bindProvider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func ParseZoneContents(content string, zoneName string, zonefileName string) (mo
241241
return foundRecords, nil
242242
}
243243

244-
func (c *bindProvider) EnsureZoneExists(_ string) error {
244+
func (c *bindProvider) EnsureZoneExists(_ string, _ map[string]string) error {
245245
return nil
246246
}
247247

0 commit comments

Comments
 (0)