Skip to content

Commit 3524e48

Browse files
authored
Merge pull request #214 return details of authorization error
2 parents a6951c9 + dd01daf commit 3524e48

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

internal/cert_manager/manager.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ import (
1515
"encoding/pem"
1616
"errors"
1717
"fmt"
18-
"github.com/rekby/safemutex"
1918
"net/http"
2019
"reflect"
2120
"strings"
2221
"sync"
2322
"time"
2423

24+
"github.com/rekby/safemutex"
25+
2526
"github.com/rekby/lets-proxy2/internal/domain"
2627

2728
"github.com/rekby/lets-proxy2/internal/contexthelper"
@@ -32,9 +33,10 @@ import (
3233

3334
"golang.org/x/xerrors"
3435

35-
"github.com/rekby/lets-proxy2/internal/cache"
3636
"go.uber.org/zap/zapcore"
3737

38+
"github.com/rekby/lets-proxy2/internal/cache"
39+
3840
"github.com/rekby/lets-proxy2/internal/log"
3941

4042
zc "github.com/rekby/zapcontext"
@@ -434,7 +436,7 @@ func (m *Manager) createOrderAndCertificate(ctx context.Context, acmeClient Acme
434436
order, err := m.createOrderForDomains(ctx, acmeClient, domainNames...)
435437
log.DebugWarning(logger, err, "Domains authorized")
436438
if err != nil {
437-
return nil, errors.New("order authorization error")
439+
return nil, fmt.Errorf("order authorization error: %+v", err)
438440
}
439441

440442
res, err := m.issueCertificate(ctx, acmeClient, cd, order)

0 commit comments

Comments
 (0)