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
2023-03-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-03-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-03-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-03-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-03-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-23Remove dead MySQL codeNick Thomas
None of this code can be reached any more, so it can all be removed
2019-05-31Setup Phabricator importBob Van Landuyt
This sets up all the basics for importing Phabricator tasks into GitLab issues. To import all tasks from a Phabricator instance into GitLab, we'll import all of them into a new project that will have its repository disabled. The import is hooked into a regular ProjectImport setup, but similar to the GitHub parallel importer takes care of all the imports itself. In this iteration, we're importing each page of tasks in a separate sidekiq job. The first thing we do when requesting a new page of tasks is schedule the next page to be imported. But to avoid deadlocks, we only allow a single job per worker type to run at the same time. For now we're only importing basic Issue information, this should be extended to richer information.
2019-04-08Improve performance of PR importKamil Trzciński
This removes unneeded `.reload` call which makes AR to load ALL objects, and create its in-memory representation.
2019-03-26Force to recreate all diffs on importKamil Trzciński
If for whatever reason we fail to import MR data, subsequent run will fail as we try to insert duplicate data. Instead of trying to recover, lets delete all and retry again.
2019-01-29Revert " Trigger iid logic from GitHub importer for merge requests."Andreas Brandl
This reverts commit fb98496f49bbb324b808523ea97f0844682fe1ac.
2018-11-21Eliminate duplicated wordsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-11-17Enable even more frozen string for lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/hook_data/**/*.rb * lib/gitlab/i18n/**/*.rb * lib/gitlab/import/**/*.rb * lib/gitlab/import_export/**/*.rb * lib/gitlab/kubernetes/**/*.rb * lib/gitlab/legacy_github_import/**/*.rb * lib/gitlab/manifest_import/**/*.rb * lib/gitlab/metrics/**/*.rb * lib/gitlab/middleware/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-10-31Reduce SQL queries needed to load open merge requestsStan Hu
The SQL queries and memory allocation in MergeRequests::RefreshService is dominated by queries for Project and Route loads. On staging, the absence of an inverse relationship caused Rails to make over 1100 extraneous SQL queries for the www-gitlab-com repository. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/49703
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-08-30Add JSON logging for Bitbucket Server importerStan Hu
Adds an importer.log so that it's easier to track what's happening with the import.
2018-08-26Bitbucket Server importer: Eliminate most idle-in-transaction issuesStan Hu
Just like with the GitHub importer, the Bitbucket Server importer can hit the default 60 s idle-in-transaction timeouts if it takes too long to create the merge request. We solve this by using the same approach as the GitHub importer: 1. Bypass all validation and hooks in creating a merge request 2. Insert the Git data in a separate transaction Part of #50021
2018-08-24Refactor GitHub Importer database helpers into helper methodsStan Hu
This in preparation for addressing idle-in-transaction timeouts for other importers. Part of #50021