Skip to content
Snippets Groups Projects
  1. Jan 24, 2018
  2. Jan 19, 2018
  3. Jan 17, 2018
  4. Jan 16, 2018
  5. Jan 12, 2018
  6. Jan 11, 2018
  7. Jan 10, 2018
  8. Jan 09, 2018
  9. Jan 08, 2018
  10. Jan 05, 2018
  11. Jan 04, 2018
  12. Jan 03, 2018
  13. Dec 22, 2017
  14. Dec 20, 2017
  15. Dec 15, 2017
  16. Dec 14, 2017
  17. Dec 13, 2017
    • Jacopo's avatar
      Adds ordering to projects contributors in API · 55f32208
      Jacopo authored
      Allows ordering in GET api/v4/projects/:project_id/repository/contributors
      through `order_by` and `sort` params.
      The available `order_by` options are: name|email|commits.
      The available `sort` options are: asc|desc.
      55f32208
  18. Dec 08, 2017
    • Michael Lihs's avatar
    • 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
  19. Dec 07, 2017
  20. Dec 01, 2017
Loading