forked from TrueCloudLab/certificates
Revert "Set timestamp when marking an acme challenge invalid"
This reverts commit 5f130895f3
.
This commit is contained in:
parent
8538ff06b7
commit
21666ba887
2 changed files with 0 additions and 2 deletions
|
@ -729,7 +729,6 @@ func storeError(ctx context.Context, db DB, ch *Challenge, markInvalid bool, err
|
||||||
ch.Error = err
|
ch.Error = err
|
||||||
if markInvalid {
|
if markInvalid {
|
||||||
ch.Status = StatusInvalid
|
ch.Status = StatusInvalid
|
||||||
ch.ValidatedAt = clock.Now().Format(time.RFC3339)
|
|
||||||
}
|
}
|
||||||
if err := db.UpdateChallenge(ctx, ch); err != nil {
|
if err := db.UpdateChallenge(ctx, ch); err != nil {
|
||||||
return WrapErrorISE(err, "failure saving error to acme challenge")
|
return WrapErrorISE(err, "failure saving error to acme challenge")
|
||||||
|
|
|
@ -170,7 +170,6 @@ func Test_storeError(t *testing.T) {
|
||||||
assert.Equals(t, updch.Token, ch.Token)
|
assert.Equals(t, updch.Token, ch.Token)
|
||||||
assert.Equals(t, updch.Value, ch.Value)
|
assert.Equals(t, updch.Value, ch.Value)
|
||||||
assert.Equals(t, updch.Status, StatusInvalid)
|
assert.Equals(t, updch.Status, StatusInvalid)
|
||||||
assert.True(t, updch.ValidatedAt != "")
|
|
||||||
|
|
||||||
assert.HasPrefix(t, updch.Error.Err.Error(), err.Err.Error())
|
assert.HasPrefix(t, updch.Error.Err.Error(), err.Err.Error())
|
||||||
assert.Equals(t, updch.Error.Type, err.Type)
|
assert.Equals(t, updch.Error.Type, err.Type)
|
||||||
|
|
Loading…
Reference in a new issue