diff options
author | zeripath <art27@cantab.net> | 2021-08-23 23:07:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 18:07:40 -0400 |
commit | 1cd4a3b963946d27620c48eb968dc81e5af432af (patch) | |
tree | f8744b95a3b96e29f6fc0ac711288f39e4760cbd /vendor/go.uber.org/atomic/string_ext.go | |
parent | f31e7a67cfc9662af2ae2dab3f4687457545f60c (diff) | |
download | gitea-1cd4a3b963946d27620c48eb968dc81e5af432af.tar.gz gitea-1cd4a3b963946d27620c48eb968dc81e5af432af.zip |
Update caddyserver/certmagic (#16789)
Fixes issue with windows users & letsencrypt
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'vendor/go.uber.org/atomic/string_ext.go')
-rw-r--r-- | vendor/go.uber.org/atomic/string_ext.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/go.uber.org/atomic/string_ext.go b/vendor/go.uber.org/atomic/string_ext.go index 3a9558213d..83d92edafc 100644 --- a/vendor/go.uber.org/atomic/string_ext.go +++ b/vendor/go.uber.org/atomic/string_ext.go @@ -21,6 +21,8 @@ package atomic //go:generate bin/gen-atomicwrapper -name=String -type=string -wrapped=Value -file=string.go +// Note: No Swap as String wraps Value, which wraps the stdlib sync/atomic.Value which +// only supports Swap as of go1.17: https://github.com/golang/go/issues/39351 // String returns the wrapped value. func (s *String) String() string { |