1. 02 Jun, 2020 1 commit
  2. 01 Jun, 2020 3 commits
  3. 29 May, 2020 5 commits
  4. 28 May, 2020 7 commits
  5. 27 May, 2020 6 commits
  6. 26 May, 2020 3 commits
  7. 22 May, 2020 2 commits
  8. 21 May, 2020 6 commits
  9. 19 May, 2020 1 commit
  10. 18 May, 2020 3 commits
    • Sami Hiltunen's avatar
      delay PostUploadPack response until request is fully read · 2fe99f66
      Sami Hiltunen authored
      Git and Gitaly stream upload-pack response data as soon as it is
      available. Some HTTP clients do not support the response being streamed
      back while the server is still reading from the request body. To avoid
      this, the request was buffered in to a temporary file before passing it
      to Gitaly for handling. The buffer had a maximum size of 10MB, which is
      now reached by requests to large repositories. These requests were then
      truncated, causing Git to fail.
      
      This commit fixes the problem by removing the request buffering and the
      maximum size. Instead, the response is buffered in to a temporary file
      until the request body is fully read, thus avoiding the problem of
      streaming the request and the response simultaneously.
      2fe99f66
    • Nick Thomas's avatar
      Merge branch 'create-scratch-dir' into 'master' · d952a6c8
      Nick Thomas authored
      Update make to generate `testdata/scratch` dir
      
      See merge request gitlab-org/gitlab-workhorse!495
      d952a6c8
    • Steve Azzopardi's avatar
      Update make to generate `testdata/scratch` dir · 785a4e65
      Steve Azzopardi authored
      When running the gitaly tests for the first time to see an error message
      to run `make prepare-tests` but then after running the tests again you
      start seeing the following error message:
      
      ```
      Error:  Received unexpected error:
      listen unix testdata/scratch/gitaly-8674665223082153551.sock: bind: no
      such file or directory
      ```
      
      This is because the directory `testdata/scratch` is not created.
      785a4e65
  11. 08 May, 2020 3 commits