Skip to content
Snippets Groups Projects
  1. Feb 08, 2018
  2. Feb 06, 2018
  3. Feb 04, 2018
  4. Feb 02, 2018
  5. Jan 29, 2018
  6. Jan 28, 2018
  7. Jan 22, 2018
  8. Jan 15, 2018
  9. Dec 04, 2017
  10. Nov 29, 2017
  11. Nov 22, 2017
  12. Nov 17, 2017
  13. Nov 16, 2017
  14. Nov 14, 2017
  15. Sep 18, 2017
  16. Sep 05, 2017
  17. Aug 31, 2017
    • Alejandro Rodríguez's avatar
    • Sean McGivern's avatar
      `current_application_settings` belongs on `Gitlab::CurrentSettings` · 5883ce95
      Sean McGivern authored
      The initializers including this were doing so at the top level, so every object
      loaded after them had a `current_application_settings` method. However, if
      someone had rack-attack enabled (which was loaded before these initializers), it
      would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't
      have that method.
      
      To fix this:
      
      1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need
         `Object.new.current_application_settings` to work.
      2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it
         like that in several places.
      3. Change the initializers to use that new form.
      5883ce95
  18. Aug 17, 2017
  19. Aug 08, 2017
  20. Jul 28, 2017
  21. Jul 25, 2017
  22. Jul 07, 2017
  23. Jun 28, 2017
  24. Jun 16, 2017
  25. Jun 05, 2017
  26. May 11, 2017
  27. May 04, 2017
  28. May 03, 2017
    • Alejandro Rodríguez's avatar
      Generate and handle a gl_repository param to pass around components · c45341c8
      Alejandro Rodríguez authored
      This new param allows us to share project information between components
      that don't share or don't have access to the same filesystem
      mountpoints, for example between Gitaly and Rails or between Rails and
      Gitlab-Shell hooks. The previous parameters are still supported, but if
      found, gl_repository is prefered. The old parameters should be deprecated
      once all components support the new format.
      c45341c8
  29. Apr 14, 2017
  30. Apr 10, 2017
Loading