Jacob Hoffman-Andrews
Jacob Hoffman-Andrews
After a recent pull, I was getting errors running the integration tests because `test/certs/ipki/sfe.boulder/` didn't exist. That's because `sfe.boulder` was recently added to the list of services, but `generate.sh` doesn't...
When we log a validation result with an error, it shows up three places: - We log the updated challenge object, which includes the error - We log the error...
Before we merge https://github.com/letsencrypt/boulder/pull/7594, we need to deploy a config change adding `e_cab_dv_subject_invalid_values` and `w_ext_subject_key_identifier_not_recommended_subscriber` to our ignore list. However, that's a problem because zlint 3.6.0 will error out when...
borp has a "VersionCol" feature for [optimistic locking](https://github.com/letsencrypt/borp?tab=readme-ov-file#optimistic-locking). We mostly don't use it, but we still have it turned on for the registrations table: https://github.com/letsencrypt/boulder/blob/1fcf0ee08180494b3bfe1a705591d3190f73c942/sa/database.go#L267-L270 This means that when a...
(Note: this PR is mainly for discussion of what direction we want to go) This makes the log events easier to parse, and makes it easier to consistently use the...
Right now our authz2 table looks like this: ``` CREATE TABLE `authz2` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `identifierType` tinyint(4) NOT NULL, `identifierValue` varchar(255) NOT NULL, `registrationID` bigint(20) NOT...
In going from a ConfigBuilder to a ServerConfig or ClientConfig, there are a number of other possible builder types along the way, and it's important to go from one to...
# Motivation and Summary When someone uses a web search engine to find a crate’s documentation, they are likely to wind up on the documentation for a random older version...
Hi! I just tried lego recently, and I like it a lot. Small, simple fast - nice! It looks like each time someone uses the `run` or `renew` commands, lego...
Since the bdns unittests used a local DNS server via TCP, modify that server to instead speak DoH. Fixes #8120