Skip to content
Snippets Groups Projects
  1. Apr 04, 2020
  2. Feb 11, 2020
  3. Feb 06, 2020
  4. Jan 06, 2020
    • ale's avatar
      Let the configuration override connection and max request timeouts · c165311f
      ale authored
      Add the 'connect_timeout' and 'request_max_timeout' configuration
      fields, to control respectively the initial connection timeout, and
      the maximum time for each individual request. This allows fine-tuning
      of the expected performance of specific backends, for example to let
      optional backends fail fast.
      c165311f
  5. Aug 17, 2019
    • ale's avatar
      Add packages to generate and send emails · 370ffd97
      ale authored
      We're using language-specific Markdown templates to allow simultaneous
      generation of text and HTML for fancy multipart/alternative
      emails. The package also supports PGP/MIME for signatures (no
      encryption yet).
      370ffd97
  6. Aug 15, 2019
  7. Jun 30, 2019
    • ale's avatar
      Prevent premature cancellation of the HTTP request context · 54f0ac4c
      ale authored
      The Context in the http.Request is bound to the one we give it when
      calling balancedBackend.do(), so we were accessing it out of scope
      when calling the final json.Decode on the response body.
      
      This was not a problem for most *small* requests, as the response Body
      already contains all the data due to having read it along with the
      headers. However, larger response bodies would cause json.Decode to
      call a Read with what at that point is a canceled Context, so the Call
      function would return a mysterious "context canceled" error.
      
      (Note that this change introduces a minor, probably less annoying,
      issue, where we can't reset "resp" between successive calls so we may
      be invoking json.Decode on a non-pristine object if the first call
      fails in some circumstances).
      54f0ac4c
  8. Apr 03, 2019
  9. Mar 27, 2019
  10. Mar 21, 2019
  11. Feb 17, 2019
  12. Jan 29, 2019
  13. Nov 25, 2018
  14. Nov 23, 2018
  15. Nov 22, 2018
  16. Nov 18, 2018
  17. Nov 16, 2018
  18. Oct 29, 2018
  19. Oct 26, 2018
  20. Aug 28, 2018
  21. Aug 17, 2018
  22. Aug 16, 2018
    • ale's avatar
      Refactor the clientutil package · 193e29e6
      ale authored
      Implement a simpler API for the Backend interface, removing most old
      public methods and replacing them with a single Call() method, making
      the package look a bit more like an actual rpc package (so, hopefully,
      easier to replace in the future).
      193e29e6
  23. Aug 15, 2018
  24. Jun 28, 2018
    • ale's avatar
      Add package to manage user encryption keys · 9c87d6c3
      ale authored
      Encryption keys are stored themselves encrypted using a
      password (kdf+aes-siv construction).
      
      This package was moved over from git.autistici.org/id/keystore and
      completely refactored.
      9c87d6c3
Loading