Skip to content
Snippets Groups Projects
  1. Jul 30, 2020
  2. Jul 09, 2020
  3. Mar 24, 2020
    • Richard van der Hoff's avatar
      Clean up some LoggingContext stuff (#7120) · 39230d21
      Richard van der Hoff authored
      * Pull Sentinel out of LoggingContext
      
      ... and drop a few unnecessary references to it
      
      * Factor out LoggingContext.current_context
      
      move `current_context` and `set_context` out to top-level functions.
      
      Mostly this means that I can more easily trace what's actually referring to
      LoggingContext, but I think it's generally neater.
      
      * move copy-to-parent into `stop`
      
      this really just makes `start` and `stop` more symetric. It also means that it
      behaves correctly if you manually `set_log_context` rather than using the
      context manager.
      
      * Replace `LoggingContext.alive` with `finished`
      
      Turn `alive` into `finished` and make it a bit better defined.
      Unverified
      39230d21
  4. Feb 07, 2020
  5. Jan 30, 2020
  6. Jan 06, 2020
  7. Oct 30, 2019
  8. Jul 23, 2019
  9. Jul 19, 2019
  10. Jul 03, 2019
  11. Jun 20, 2019
  12. Jun 10, 2019
    • Erik Johnston's avatar
      Fix key verification when key stored with null valid_until_ms · 43badd2c
      Erik Johnston authored
      Some keys are stored in the synapse database with a null valid_until_ms
      which caused an exception to be thrown when using that key. We fix this
      by treating nulls as zeroes, i.e. they keys will match verification
      requests with a minimum_valid_until_ms of zero (i.e. don't validate ts)
      but will not match requests with a non-zero minimum_valid_until_ms.
      
      Fixes #5391.
      43badd2c
  13. Jun 06, 2019
    • Richard van der Hoff's avatar
      Stop hardcoding trust of old matrix.org key (#5374) · 9fbb20a5
      Richard van der Hoff authored
      There are a few changes going on here:
      
      * We make checking the signature on a key server response optional: if no
        verify_keys are specified, we trust to TLS to validate the connection.
      
      * We change the default config so that it does not require responses to be
        signed by the old key.
      
      * We replace the old 'perspectives' config with 'trusted_key_servers', which
        is also formatted slightly differently.
      
      * We emit a warning to the logs every time we trust a key server response
        signed by the old key.
      Unverified
      9fbb20a5
  14. Jun 05, 2019
  15. Jun 03, 2019
  16. May 24, 2019
  17. May 23, 2019
  18. May 10, 2019
  19. Apr 11, 2019
  20. Apr 08, 2019
  21. Apr 04, 2019
  22. Apr 03, 2019
  23. Jan 29, 2019
  24. Nov 27, 2018
  25. Aug 13, 2018
  26. Aug 10, 2018
  27. Jul 09, 2018
  28. Jun 22, 2018
  29. Apr 15, 2018
  30. Jan 27, 2018
    • Richard van der Hoff's avatar
      Create dbpool as normal in tests · d7eacc4f
      Richard van der Hoff authored
      ... instead of creating our own special SQLiteMemoryDbPool, whose purpose was a
      bit of a mystery.
      
      For some reason this makes one of the tests run slightly slower, so bump the
      sleep(). Sorry.
      d7eacc4f
  31. Jan 16, 2018
    • Richard van der Hoff's avatar
      Optimise LoggingContext creation and copying · 44a49841
      Richard van der Hoff authored
      It turns out that the only thing we use the __dict__ of LoggingContext for is
      `request`, and given we create lots of LoggingContexts and then copy them every
      time we do a db transaction or log line, using the __dict__ seems a bit
      redundant. Let's try to optimise things by making the request attribute
      explicit.
      44a49841
  32. Sep 20, 2017
  33. Sep 19, 2017
  34. Sep 18, 2017
Loading