diff options
author | Matthew Holt <[email protected]> | 2024-12-19 12:15:28 -0700 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2024-12-19 12:17:07 -0700 |
commit | 66c80caf236e2d98e61bf1bc8bb062d7b8c25430 (patch) | |
tree | a3d223ea65ee9217890168408809f684c485da49 | |
parent | 47391e4ec7375d5aa8a8f7d9e7eb7962e9adc0f6 (diff) | |
download | caddy-66c80caf236e2d98e61bf1bc8bb062d7b8c25430.tar.gz caddy-66c80caf236e2d98e61bf1bc8bb062d7b8c25430.zip |
cmd: Disable go1.23 tlskyber=1 experiment
Compilation with go 1.24 fails with it, since the experiment has ended. We'll reintroduce post quantum soon.
-rw-r--r-- | cmd/caddy/main.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cmd/caddy/main.go b/cmd/caddy/main.go index f1aeda0a4..48fa149aa 100644 --- a/cmd/caddy/main.go +++ b/cmd/caddy/main.go @@ -1,8 +1,3 @@ -// The below line is required to enable post-quantum key agreement in Go 1.23 -// by default without insisting on setting a minimum version of 1.23 in go.mod. -// See https://github.com/caddyserver/caddy/issues/6540#issuecomment-2313094905 -//go:debug tlskyber=1 - // Copyright 2015 Matthew Holt and The Caddy Authors // // Licensed under the Apache License, Version 2.0 (the "License"); |