Skip to content

Commit f6d9931

Browse files
jshaRoland Bracewell Shoemaker
authored andcommitted
Fix error message with extra "not". (letsencrypt#3345)
1 parent 990469e commit f6d9931

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sa/sa.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ func (ssa *SQLStorageAuthority) FinalizeAuthorization(ctx context.Context, authz
818818
return Rollback(tx, err)
819819
}
820820
if statusIsPending(authz.Status) {
821-
err = berrors.InternalServerError("authorization with ID %q is not pending", authz.ID)
821+
err = berrors.InternalServerError("authorization to finalize is pending (ID %q)", authz.ID)
822822
return Rollback(tx, err)
823823
}
824824

0 commit comments

Comments
 (0)