- Apr 17, 2018
-
-
James Lopez authored
-
- Apr 10, 2018
-
-
blackst0ne authored
1. Add support for `RAILS5=1|true` for the `bin/spinach` command. 2. Synchronize used spinach versions both for rails4 and rails5. For rails5 it was accidently used spinach 0.10.1 instead of 0.8.10. That brought some problems on running spinach tests. Example of failure message: NoMethodError: undefined method `line' for #<Spinach::Scenario:0x000000000c86ba80> Did you mean? lines /builds/gitlab-org/gitlab-ce/features/support/env.rb:52:in `before_scenario_run'
-
- Apr 02, 2018
-
-
blackst0ne authored
-
- Mar 21, 2018
-
-
blackst0ne authored
-
- Feb 20, 2018
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- Jan 26, 2018
-
-
Lin Jen-Shin authored
-
Lin Jen-Shin authored
-
- Jan 19, 2018
-
-
Sean McGivern authored
-
- Dec 08, 2017
-
-
Bob Van Landuyt authored
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
-
- Oct 13, 2017
-
-
Zeger-Jan van de Weg authored
Resolves gitlab-org/gitlab-ce#36417
-
- Aug 09, 2017
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- Jul 22, 2017
-
-
Jacopo authored
Added the type attribute to a CHANGELOG entry. When you create a new entry the software asks for the category of the change and sets the associated type in the file.
-
- Jun 23, 2017
-
-
Takuya Noguchi authored
-
- Mar 21, 2017
-
-
Jacob Vosmaer (GitLab) authored
-
- Feb 06, 2017
-
-
James Lopez authored
-
James Lopez authored
-
- Jan 10, 2017
-
-
Mike Greiling authored
-
- Dec 09, 2016
-
-
Adam Niedzielski authored
-
- Dec 02, 2016
-
-
Robert Speicher authored
The `--short` option has existed since at least 1.8.1: https://git-scm.com/docs/git-symbolic-ref/1.8.1
-
- Nov 29, 2016
-
-
Nick Thomas authored
-
- Nov 03, 2016
-
-
Robert Speicher authored
[ci skip]
-
- Nov 02, 2016
-
-
Robert Speicher authored
-
- Oct 31, 2016
-
-
Robert Speicher authored
-
Robert Speicher authored
-
- Oct 21, 2016
-
-
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
-
- Aug 12, 2016
-
-
Kamil Trzcińśki authored
-
Kamil Trzcińśki authored
-
- Jun 17, 2016
-
-
Kamil Trzcińśki authored
-
- Apr 28, 2016
-
-
Jacob Vosmaer (GitLab) authored
When running Unicorn or Sidekiq in the foreground this change removes an intermediate /bin/sh process. This makes process supervision in the GitLab Development Kit more reliable. This change does not affect Omnibus-GitLab (because there we do not use these launch scripts). Installations from source do use the launch scripts but for the standard GitLab init script this change will not make a difference. Custom installations using Upstart or Systemd may be affected however, because under certain configurations these systems count exactly how many forks happen during process startup, and we are reducing that number by one here.
-
- Apr 22, 2016
-
-
Robert Speicher authored
Prevents output like this: Array values in the parameter are deprecated. Please use a String or nil. An Array was passed in from bin/rspec:3:in `load'
-
- Apr 14, 2016
-
-
Yorick Peterse authored
Using db:reset ensures existing tables are first dropped. This in turn ensures that we can drop tables regardless of any foreign key constraints. While CE currently doesn't have any foreign keys EE defines the following relation: remote_mirrors.project_id -> projects.id MySQL will complain whenever you try to drop the "projects" table first even when using "DROP TABLE ... CASCADE".
-
- Jan 15, 2016
-
-
Jacob Vosmaer (GitLab) authored
This behavior got lost in the previous commit.
-
- Jan 14, 2016
-
-
Jacob Vosmaer (GitLab) authored
-
- Dec 08, 2015
-
-
Jacob Vosmaer (GitLab) authored
-
- Dec 03, 2015
-
-
Valery Sizov authored
-
- Nov 25, 2015
-
-
Valery Sizov authored
-
- Oct 05, 2015
-
-
Jacob Vosmaer (GitLab) authored
-
- Sep 25, 2015
-
-
Jacob Vosmaer (GitLab) authored
-
- Aug 27, 2015
-
-
Jacob Vosmaer (GitLab) authored
The old invocation only worked by accident because we have a '&' somewhere in the init script for expediency. When ran from a terminal, the mail_room daemon process ended up in the session of the terminal. This commit adds a small wrapper that tries to do the textbook daemonization steps (double fork, setsid etc.) while also taking care that the pidfile is written before the 'start' process exits.
-
- Aug 26, 2015
-
-
Douwe Maan authored
-