BigW Consortium Gitlab

  1. 19 Jan, 2017 1 commit
  2. 15 Jan, 2017 1 commit
  3. 09 Jan, 2017 1 commit
  4. 21 Dec, 2016 3 commits
  5. 19 Dec, 2016 1 commit
  6. 15 Dec, 2016 1 commit
  7. 14 Dec, 2016 1 commit
  8. 09 Dec, 2016 1 commit
  9. 06 Dec, 2016 1 commit
  10. 16 Nov, 2016 1 commit
  11. 06 Nov, 2016 1 commit
  12. 05 Nov, 2016 1 commit
  13. 31 Oct, 2016 1 commit
  14. 28 Oct, 2016 1 commit
  15. 21 Oct, 2016 1 commit
    • Re-organize queues to use for Sidekiq · 97731760
      Yorick Peterse authored
      Dumping too many jobs in the same queue (e.g. the "default" queue) is a
      dangerous setup. Jobs that take a long time to process can effectively
      block any other work from being performed given there are enough of
      these jobs.
      
      Furthermore it becomes harder to monitor the jobs as a single queue
      could contain jobs for different workers. In such a setup the only
      reliable way of getting counts per job is to iterate over all jobs in a
      queue, which is a rather time consuming process.
      
      By using separate queues for various workers we have better control over
      throughput, we can add weight to queues, and we can monitor queues
      better. Some workers still use the same queue whenever their work is
      related. For example, the various CI pipeline workers use the same
      "pipeline" queue.
      
      This commit includes a Rails migration that moves Sidekiq jobs from the
      old queues to the new ones. This migration also takes care of doing the
      inverse if ever needed. This does require downtime as otherwise new jobs
      could be scheduled in the old queues after this migration completes.
      
      This commit also includes an RSpec test that blacklists the use of the
      "default" queue and ensures cron workers use the "cronjob" queue.
      
      Fixes gitlab-org/gitlab-ce#23370
  16. 20 Oct, 2016 1 commit
  17. 13 Oct, 2016 1 commit
    • Refactor JS code · a8ac9089
      Alfredo Sumaran authored
      - Use a store base object to manage application state.
      - Add a service to handle ajax requests.
      - Load code only when needed
  18. 04 Oct, 2016 1 commit
  19. 28 Sep, 2016 1 commit
  20. 26 Sep, 2016 2 commits
  21. 22 Sep, 2016 1 commit
  22. 20 Sep, 2016 1 commit
  23. 18 Aug, 2016 1 commit
  24. 17 Aug, 2016 2 commits
  25. 04 Aug, 2016 1 commit
  26. 26 Jul, 2016 2 commits
  27. 24 Jul, 2016 1 commit
  28. 18 Jul, 2016 1 commit
  29. 15 Jul, 2016 1 commit
  30. 14 Jul, 2016 1 commit
    • Load Javascript U2F library selectively. · 4b33c4c6
      Timothy Andrew authored
      1. Only on supported Chrome versions
      
      2. Mainly, this lets us simplify the javascript-based U2F check to
         `window.u2f`, where `window.u2f` can either be loaded from the GitLab
         server (for Chrome) or from the Firefox extension.
      
      3. This is a better way to provide browser detection for U2F.
  31. 29 Jun, 2016 1 commit
  32. 23 Jun, 2016 1 commit
  33. 16 Jun, 2016 2 commits
  34. 10 Jun, 2016 1 commit