BUG/MINOR: acme: creating an account should not end the task

The account creation was mistakenly ending the task instead of being
wakeup for the NewOrder state, it was preventing the creation of the
certificate, however the account was correctly created.

To fix this, only the jump to the end label need to be remove, the
standard leaving codepath of the function will allow to be wakeup.

No backport needed.
This commit is contained in:
William Lallemand 2025-04-29 14:09:46 +02:00
parent 2cdb3cb91e
commit 62dfe1fc87

View File

@ -1705,7 +1705,6 @@ struct task *acme_process(struct task *task, void *context, unsigned int state)
st = ACME_NEWORDER;
http_st = ACME_HTTP_REQ;
task_wakeup(task, TASK_WOKEN_MSG);
goto end;
}