summary refs log tree commit diff
path: root/scripts-dev/check_auth.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-05Clean up debug logging (#5347)Richard van der Hoff4-8/+20
Remove some spurious stuff, clarify some other stuff
2019-06-05Rename VerifyKeyRequest.deferred field (#5343)Richard van der Hoff2-12/+13
it's a bit confusing
2019-06-04Call RetryLimiter correctly (#5340)Richard van der Hoff2-1/+8
Fixes a regression introduced in #5335.
2019-06-04Fix failure to fetch batches of PDUs (#5342)Richard van der Hoff2-0/+2
FederationClient.get_pdu is called in a loop to fetch a batch of PDUs. A failure to fetch one should not result in a failure of the whole batch. Add the missing `continue`.
2019-06-04Rename get_events->get_events_from_store_or_dest (#5344)Richard van der Hoff2-20/+14
We have too many things called get_event, and it's hard to figure out what we mean. Also remove some unused params from the signature, and add some logging.
2019-06-04Only parse from email if providedBrendan Abolivier1-4/+5
2019-06-04LintBrendan Abolivier1-1/+0
2019-06-04Make account validity renewal emails work when email notifs are disabledBrendan Abolivier2-42/+58
2019-06-04Don't do long retries when calling the key notary server. (#5334)Richard van der Hoff2-1/+1
It takes at least 20 minutes to work through the long_retries schedule (11 attempts, each with a 60 second timeout, and 60 seconds between each request), so if the notary server isn't returning within the timeout, we'll just end up blocking whatever request is happening for 20 minutes. Ain't nobody got time for that.
2019-06-04