-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) mod_md: v1.0.2, fix staging reset when MDCertificateAgreemen was initially missing.
+ [Stefan Eissing]
+
*) mod_watchdog: Correct some log messages. [Rainer Jung]
*) core: silently ignore a not existent file path when IncludeOptional
* @macro
* Version number of the md module as c string
*/
-#define MOD_MD_VERSION "1.0.1"
+#define MOD_MD_VERSION "1.0.2"
/**
* @macro
* release. This is a 24 bit number with 8 bits for major number, 8 bits
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
*/
-#define MOD_MD_VERSION_NUM 0x010001
+#define MOD_MD_VERSION_NUM 0x010002
#define MD_EXPERIMENTAL 0
#define MD_ACME_DEF_URL "https://acme-v01.api.letsencrypt.org/directory"
if (job->stalled) {
/* Missing information, this will not change until configuration
* is changed and server restarted */
- return APR_INCOMPLETE;
+ rv = APR_INCOMPLETE;
+ goto out;
}
else if (job->renewed) {
assess_renewal(wd, job, ptemp);
job->md->name, job->error_runs, md_print_duration(ptemp, delay));
}
+out:
if (error_runs != job->error_runs) {
save_job_props(wd->reg, job, ptemp);
}