Skip to content
Snippets Groups Projects
  1. Oct 11, 2017
  2. Oct 04, 2017
  3. Sep 21, 2017
  4. Sep 12, 2017
  5. Sep 08, 2017
  6. Aug 31, 2017
    • 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
  7. Aug 07, 2017
  8. Jul 24, 2017
  9. Jul 19, 2017
  10. Jun 27, 2017
    • Z.J. van de Weg's avatar
      Split pipelines by origin on usage data · 44470068
      Z.J. van de Weg authored
      When sending the usage data, it now includes all pipelines. This commit
      will split the pipelines in two; internal and external.
      
      This will lead to historical data being incorrectly marked this way.
      
      Fixes gitlab-org/gitlab-ce#33172
      44470068
    • Z.J. van de Weg's avatar
      Add in_review_folder to usage ping · e7d12a70
      Z.J. van de Weg authored
      As its hard to reliably check how many review apps there are on the
      clients machine, we start by checking where the type is `review`. This
      means the folder is called that way. This will lead to a seq
      scan on the table. However, this is done once a week, so the benefit of
      adding an index seems not to apply here.
      e7d12a70
  11. May 18, 2017
  12. May 11, 2017
  13. May 07, 2017
  14. Apr 14, 2017
Loading