Skip to content

Commit 83963ec

Browse files
committed
BUG/MINOR: serialize tls-tickets in bind params
1 parent 9ca1355 commit 83963ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/bind.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ func serializeBindParams(b models.BindParams, path string, opt *options.Configur
588588
b.NoTLSTickets {
589589
options = append(options, &params.BindOptionWord{Name: "no-tls-tickets"})
590590
}
591-
if b.TLSTickets == "disabled" {
591+
if b.TLSTickets == "enabled" {
592592
options = append(options, &params.BindOptionWord{Name: "tls-tickets"})
593593
}
594594
if b.GenerateCertificates {

0 commit comments

Comments
 (0)