Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-16fix typo, added relevant specJames Lopez
2017-01-11Fill missing authorized projects rowsYorick Peterse
This ensures that the project_authorizations rows exist for all users for which this data has not yet been populated. Fixes #26194
2016-12-27Merge branch 'master' into 'dz-rename-reserved-project-names'Dmitriy Zaporozhets
# Conflicts: # db/schema.rb
2016-12-27Fix rename projects spec so it doesn't hangYorick Peterse
This spec would hang due to the use of transactions, and would incorrectly stub Thread.new.
2016-12-26Rename users with namespace ending with .gitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-24Rename projects with reserved path namesDmitriy Zaporozhets
We cant have project with name 'project' or 'tree' anymore. This merge request containts a migration that will find and rename all projects using reserved names by adding N digit to the end of the name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-13Encode when migrating ProcessCommitWorker jobsYorick Peterse
If the source encoding is not UTF-8 we need to encode the data as `JSON.dump` may throw an error if the input can not be converted to UTF-8. We only encode when necessary to reduce the overhead. Fixes gitlab-org/gitlab-ce#25489
2016-12-01Pass commit data to ProcessCommitWorkerYorick Peterse
By passing commit data to this worker we remove the need for querying the Git repository for every job. This in turn reduces the time spent processing each job. The migration included migrates jobs from the old format to the new format. For this to work properly it requires downtime as otherwise workers may start producing errors until they're using a newer version of the worker code.