1. 04 1月, 2016 2 次提交
  2. 02 1月, 2016 1 次提交
  3. 01 1月, 2016 5 次提交
  4. 31 12月, 2015 16 次提交
  5. 30 12月, 2015 9 次提交
  6. 29 12月, 2015 7 次提交
    • Y
      Use Gitlab::CurrentSettings for InfluxDB · 701e5de9
      Yorick Peterse 提交于
      This ensures we can still start up even when not connecting to a
      database.
      701e5de9
    • Y
      Merge branch 'influxdb-without-sidekiq' into 'master' · 1dbf7284
      Yorick Peterse 提交于
      See merge request !2238
      1dbf7284
    • Y
      Write to InfluxDB directly via UDP · 620e7bb3
      Yorick Peterse 提交于
      This removes the need for Sidekiq and any overhead/problems introduced
      by TCP. There are a few things to take into account:
      
      1. When writing data to InfluxDB you may still get an error if the
         server becomes unavailable during the write. Because of this we're
         catching all exceptions and just ignore them (for now).
      2. Writing via UDP apparently requires the timestamp to be in
         nanoseconds. Without this data either isn't written properly.
      3. Due to the restrictions on UDP buffer sizes we're writing metrics one
         by one, instead of writing all of them at once.
      620e7bb3
    • Y
      Strip newlines from obfuscated SQL · 03478e6d
      Yorick Peterse 提交于
      Newlines aren't really needed and they may mess with InfluxDB's line
      protocol.
      03478e6d
    • D
      Merge branch 'issue_3780' into 'master' · 10491c38
      Dmitriy Zaporozhets 提交于
      Downcased user or email search for avatar_icon.
      
      GitLab users are defined with their mail address which is enforced to be lower case. When a commit is listed in the history whose committer mail address is not written in all lower case, the corresponding GitLab user won't be found because the search is case sensitive resp. the mail address to search for not downcased.
      
      Closes #3780 
      
      See merge request !2234
      10491c38
    • D
      Merge branch 'feature/recaptcha_settings' into 'master' · 58bc4b72
      Dmitriy Zaporozhets 提交于
      Makes reCAPTCHA configurable through Application Settings screen
      
      Following the work made by @stanhu here: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2216, made it configurable without needing to restart Gitlab
      
      See merge request !2231
      58bc4b72
    • G
      Add hotfix that allows to access build artifacts created before 8.3 · 50469645
      Grzegorz Bizon 提交于
      This is a temporary hotfix that allows to access build artifacts created
      before 8.3. See #5257.
      
      This needs to be changed after migrating CI build files.
      
      Note that `ArtifactUploader` uses `artifacts_path` to create a storage
      directory before and after parsisting `Ci::Build` instance, before and
      after moving a file to store (save and fetch a file).
      50469645