Skip to content
Snippets Groups Projects
  1. Aug 01, 2018
  2. Jul 31, 2018
  3. Jul 30, 2018
  4. Jul 27, 2018
  5. Jul 26, 2018
  6. Jul 10, 2018
  7. Jun 26, 2018
  8. May 31, 2018
  9. May 30, 2018
  10. May 29, 2018
  11. May 23, 2018
  12. May 07, 2018
  13. May 04, 2018
    • Bob Van Landuyt's avatar
      Store application wide terms · 3d6d0a09
      Bob Van Landuyt authored
      This allows admins to define terms in the application settings.
      
      Every time the terms are adjusted, a new version is stored and becomes
      the 'active' version. This allows tracking which specific version was
      accepted by a user.
      3d6d0a09
  14. Mar 21, 2018
  15. Mar 15, 2018
  16. Jan 22, 2018
  17. Jan 11, 2018
  18. Jan 08, 2018
    • Michael Kozono's avatar
      Backport option to disable writing to `authorized_keys` file · 255a0f85
      Michael Kozono authored
      Originally branch 'mk-toggle-writing-to-auth-keys-1631'
      
      See merge request !2004
      
      Squashed commits:
      Add authorized_keys_enabled to Application Settings
      Ensure default settings are exposed in UI
      Without this change, `authorized_keys_enabled` is unchecked when it is nil, even if it should be checked by default.
      Add “Speed up SSH operations” documentation
      Clarify the reasons for disabling writes
      Add "How to go back" section
      Tweak copy
      Update Application Setting screenshot
      255a0f85
  19. Dec 08, 2017
    • Bob Van Landuyt's avatar
      Move the circuitbreaker check out in a separate process · f1ae1e39
      Bob Van Landuyt authored
      Moving the check out of the general requests, makes sure we don't have
      any slowdown in the regular requests.
      
      To keep the process performing this checks small, the check is still
      performed inside a unicorn. But that is called from a process running
      on the same server.
      
      Because the checks are now done outside normal request, we can have a
      simpler failure strategy:
      
      The check is now performed in the background every
      `circuitbreaker_check_interval`. Failures are logged in redis. The
      failures are reset when the check succeeds. Per check we will try
      `circuitbreaker_access_retries` times within
      `circuitbreaker_storage_timeout` seconds.
      
      When the number of failures exceeds
      `circuitbreaker_failure_count_threshold`, we will block access to the
      storage.
      
      After `failure_reset_time` of no checks, we will clear the stored
      failures. This could happen when the process that performs the checks
      is not running.
      f1ae1e39
  20. Nov 29, 2017
  21. Nov 23, 2017
  22. Nov 17, 2017
  23. Oct 30, 2017
  24. Oct 23, 2017
  25. Oct 21, 2017
  26. Oct 19, 2017
  27. Oct 17, 2017
  28. Oct 16, 2017
  29. Sep 11, 2017
  30. Sep 09, 2017
  31. Aug 30, 2017
  32. Aug 11, 2017
  33. Jul 27, 2017
Loading