Skip to content
Snippets Groups Projects
  1. Mar 28, 2018
  2. Mar 27, 2018
  3. Mar 26, 2018
  4. Mar 21, 2018
  5. Mar 14, 2018
  6. Mar 07, 2018
  7. Mar 05, 2018
  8. Mar 02, 2018
  9. Feb 28, 2018
  10. Feb 23, 2018
  11. Feb 21, 2018
  12. Feb 14, 2018
  13. Feb 13, 2018
  14. Feb 08, 2018
  15. Feb 05, 2018
  16. Feb 02, 2018
  17. Jan 31, 2018
  18. Jan 30, 2018
  19. Jan 22, 2018
  20. Jan 18, 2018
  21. Jan 17, 2018
  22. Jan 12, 2018
  23. 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
  24. Jan 04, 2018
  25. Dec 20, 2017
  26. Dec 15, 2017
  27. 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
  28. Dec 04, 2017
Loading