(ctx context.Context, chal acme.Challenge)
| 884 | } |
| 885 | |
| 886 | func (sw solverWrapper) CleanUp(ctx context.Context, chal acme.Challenge) error { |
| 887 | activeChallengesMu.Lock() |
| 888 | delete(activeChallenges, challengeKey(chal)) |
| 889 | activeChallengesMu.Unlock() |
| 890 | return sw.Solver.CleanUp(ctx, chal) |
| 891 | } |
| 892 | |
| 893 | // Interface guards |
| 894 | var ( |
nothing calls this directly
no test coverage detected