1. 20 12月, 2018 2 次提交
  2. 19 12月, 2018 1 次提交
    • B
      Update specs to rails5 format · b44a2c80
      blackst0ne 提交于
      Updates specs to use new rails5 format.
      
      The old format:
      `get :show, { some: params }, { some: headers }`
      
      The new format:
      `get :show, params: { some: params }, headers: { some: headers }`
      b44a2c80
  3. 18 12月, 2018 2 次提交
  4. 16 12月, 2018 2 次提交
  5. 15 12月, 2018 1 次提交
  6. 14 12月, 2018 1 次提交
  7. 13 12月, 2018 1 次提交
  8. 11 12月, 2018 1 次提交
  9. 10 12月, 2018 1 次提交
  10. 08 12月, 2018 3 次提交
    • Z
      Allow public forks to be deduplicated · 896c0bdb
      Zeger-Jan van de Weg 提交于
      When a project is forked, the new repository used to be a deep copy of everything
      stored on disk by leveraging `git clone`. This works well, and makes isolation
      between repository easy. However, the clone is at the start 100% the same as the
      origin repository. And in the case of the objects in the object directory, this
      is almost always going to be a lot of duplication.
      
      Object Pools are a way to create a third repository that essentially only exists
      for its 'objects' subdirectory. This third repository's object directory will be
      set as alternate location for objects. This means that in the case an object is
      missing in the local repository, git will look in another location. This other
      location is the object pool repository.
      
      When Git performs garbage collection, it's smart enough to check the
      alternate location. When objects are duplicated, it will allow git to
      throw one copy away. This copy is on the local repository, where to pool
      remains as is.
      
      These pools have an origin location, which for now will always be a
      repository that itself is not a fork. When the root of a fork network is
      forked by a user, the fork still clones the full repository. Async, the
      pool repository will be created.
      
      Either one of these processes can be done earlier than the other. To
      handle this race condition, the Join ObjectPool operation is
      idempotent. Given its idempotent, we can schedule it twice, with the
      same effect.
      
      To accommodate the holding of state two migrations have been added.
      1. Added a state column to the pool_repositories column. This column is
      managed by the state machine, allowing for hooks on transitions.
      2. pool_repositories now has a source_project_id. This column in
      convenient to have for multiple reasons: it has a unique index allowing
      the database to handle race conditions when creating a new record. Also,
      it's nice to know who the host is. As that's a short link to the fork
      networks root.
      
      Object pools are only available for public project, which use hashed
      storage and when forking from the root of the fork network. (That is,
      the project being forked from itself isn't a fork)
      
      In this commit message I use both ObjectPool and Pool repositories,
      which are alike, but different from each other. ObjectPool refers to
      whatever is on the disk stored and managed by Gitaly. PoolRepository is
      the record in the database.
      896c0bdb
    • M
      Extract context in JobsController spec · 5de224e3
      Matija Čupić 提交于
      5de224e3
    • M
      Extract context in JobsController spec · 7fd0f503
      Matija Čupić 提交于
      7fd0f503
  11. 07 12月, 2018 12 次提交
  12. 06 12月, 2018 1 次提交
    • J
      Fixes broken tests · 51a61e53
      jhampton 提交于
      - Adjusts behavior to cover conditional trigger variable values
      51a61e53
  13. 04 12月, 2018 2 次提交
  14. 03 12月, 2018 2 次提交
  15. 30 11月, 2018 1 次提交
    • S
      Add a flag to use a subquery for group issues search · 7fd5dbf9
      Sean McGivern 提交于
      We already had a flag to use a CTE, but this broke searching in some
      cases where we need to sort by a joined table. Disabling the CTE flag
      makes searches much slower.
      
      The new flag, to use a subquery, makes them slightly slower than the
      CTE, while maintaining correctness. If both it and the CTE flag are
      enabled, the subquery takes precedence.
      7fd5dbf9
  16. 29 11月, 2018 7 次提交