1. 05 1月, 2018 1 次提交
  2. 25 12月, 2017 1 次提交
  3. 22 12月, 2017 1 次提交
  4. 20 12月, 2017 1 次提交
  5. 14 12月, 2017 2 次提交
    • H
      sorting for tags api · e7b40c2f
      haseeb 提交于
      e7b40c2f
    • J
      Adds ordering to projects contributors in API · 55f32208
      Jacopo 提交于
      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
  6. 09 12月, 2017 3 次提交
  7. 08 12月, 2017 1 次提交
    • B
      Move the circuitbreaker check out in a separate process · f1ae1e39
      Bob Van Landuyt 提交于
      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
  8. 07 12月, 2017 1 次提交
  9. 03 12月, 2017 3 次提交
  10. 02 12月, 2017 1 次提交
  11. 30 11月, 2017 1 次提交
  12. 29 11月, 2017 1 次提交
  13. 28 11月, 2017 5 次提交
  14. 24 11月, 2017 2 次提交
  15. 23 11月, 2017 2 次提交
  16. 22 11月, 2017 2 次提交
    • S
      Improve output for extra queries in specs · db1925f9
      Sean McGivern 提交于
      Previously, this used `Array#-`, which would remove all queries that matches the
      query text in the original set.
      
      However, sometimes we have a problem with parameterised queries, where the query
      text is identical both times, so we'd run a query N times instead of once, and
      it would be hidden from the output.
      
      Replace the logic to only remove a given query N times from the actual log,
      where N is the number of times it appears in the expected log.
      db1925f9
    • J
      Add FetchSourceBranch Gitaly call · 571f1dda
      Jacob Vosmaer (GitLab) 提交于
      571f1dda
  17. 21 11月, 2017 1 次提交
  18. 17 11月, 2017 11 次提交