You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Warnf("DNS record comment is limited to %d chars, trimming comment of %s. Please set it to less than %d for free zones and less than %d for paid zones, to avoid endless syncs.", paidZoneCommentMaxLength, ep.DNSName, freeZoneCommentMaxLength, paidZoneCommentMaxLength)
log.Infof("DNS record comment is limited to %d chars for free zones, trimming comment of %s", freeZoneCommentMaxLength, ep.DNSName)
900
+
iffree&&len(comment) >freeZoneCommentMaxLength {
901
+
log.Warnf("DNS record comment is limited to %d chars for free zones, trimming comment of %s. Please set it to less than %d characters to avoid endless syncs.", freeZoneCommentMaxLength, ep.DNSName, freeZoneCommentMaxLength)
897
902
comment=comment[:freeZoneCommentMaxLength-1]
898
903
}
899
-
iflen(comment) >paidZoneCommentMaxLength {
900
-
log.Infof("DNS record comment is limited to %d chars, trimming comment of %s", paidZoneCommentMaxLength, ep.DNSName)
0 commit comments