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
2018-07-24Merge branch 'security-event-counters-private-data' into 'master'Felipe Artur Cardozo
[master] Don't expose project names in various counters See merge request gitlab/gitlabhq!2418
2018-07-22Enable frozen string in newly added filesgfyoung
Enables frozen string for new files in directories that had been previously covered in previous MR's. Partially addresses #47424.
2018-07-19Merge branch '43312-remove_user_activity_workers' into 'master'Rémy Coutable
Delete UserActivities and related workers Closes #43312 See merge request gitlab-org/gitlab-ce!20597
2018-07-19Improve email address parsingGeorge Thomas
If you enter the following RFC 2822 compliant address: `John Doe <john@doe.com>` Gitlab will attempt to send three emails: 1) John 2) Doe 3) john@doe.com With this change given the following: `John Doe <johndoe@example.com>` `Jane Doe <janedoe@example.com>` Gitlab will send emails to `johndoe@example.com` and `janedoe@example.com`
2018-07-18Delete UserActivities and related workersImre Farkas
2018-07-11Merge branch ↵Douwe Maan
'45592-nomethoderror-undefined-method-commit-for-nil-nilclass-in-sidekiq-caused-by-a-merge-commit-in-a-forked-project-with-upstream-project-deleted' into 'master' Resolve "NoMethodError: undefined method `commit' for nil:NilClass in sidekiq caused by a merge commit in a forked project with upstream project deleted." Closes #45592 See merge request gitlab-org/gitlab-ce!20534
2018-07-11Fix ArgumentError in GitGarbageCollectWorker Sidekiq jobStan Hu
When the Gitaly call failed, the exception handling failed because `method` is expected to have a parameter. Closes #49096
2018-07-10Fix ProcessCommitWorker when upstream project is deletedSean McGivern
2018-07-09Resolve Naming/UncommunicativeMethodLin Jen-Shin
2018-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-07-06Add ExclusiveLease guards for RepositoryCheck::{DispatchWorker,BatchWorker}Stan Hu
We saw in production that DispatchWorker was running about twice an hour, which would schedule twice as many jobs as it should. For some reason, BatchWorker was running 1000 times per hour, possibly due to Sidekiq RSS kills that caused these jobs to restart. Adding an ExclusiveLease prevents these jobs from running more than they should. Relates to https://gitlab.com/gitlab-com/infrastructure/issues/4526
2018-07-06Delete deprecated object_storage_upload queueJan Provaznik
2018-07-06Merge branch 'build-chunks-on-object-storage' into 'master'Grzegorz Bizon
Allow to store BuildTraceChunks on Object Storage Closes #45712 See merge request gitlab-org/gitlab-ce!19515
2018-07-06Use AlreadyArchivedError if it's the caseShinya Maeda
2018-07-06Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-07-05Fix specShinya Maeda
2018-07-05Rename build to job in ArchiveTraceWorkerShinya Maeda
2018-07-05Check if trace exists before process `archive!` methodShinya Maeda
2018-07-05Catch ArchiveError and ignore errors if it's already archivedShinya Maeda
2018-07-04Revert "Merge branch ↵Sean McGivern
'44726-cancel_lease_upon_completion_in_project_cache_worker' into 'master'" This reverts merge request !20103
2018-07-04Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-07-03Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-07-02Prune web hook logs older than 90 daysYorick Peterse
This adds a recurring Sidekiq job that removes up to 50 000 old web hook logs per hour, if they are older than 90 days. This will prevent the web_hook_logs table from growing indefinitely. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/46120
2018-06-30Cancel ExclusiveLease upon completion in ProjectCacheWorkerImre Farkas
2018-06-27Refactor fetching healthy shards with Gitlab::HealthChecks::GitalyCheckToon Claes
There is only 1 `HEALTHY_SHARD_CHECKS` used: Gitlab::HealthChecks::GitalyCheck So we can simplify code to get the list of healthy shard names.
2018-06-27Rename method to #each_eligible_shardToon Claes
2018-06-27Add RepositoryCheck::DispatchWorker to start worker per shardToon Claes
The RepositoryCheck::DispatchWorker will start a RepositoryCheck::BatchWorker for each healthy shard. Closes gitlab-org/gitlab-ce#48042
2018-06-27Bring Gitlab::ShardHealthCache to CEToon Claes
It already existed in EE in the Geo namespace. This change brings it to CE.
2018-06-27Extract EachShardWorker into a concernToon Claes
2018-06-27Enable frozen string for app/workers/**/*.rbgfyoung
Partially addresses #47424.
2018-06-27Enable frozen string literals for app/workers/*.rbgfyoung
2018-06-25Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-06-25Delete non-latest merge request diff files upon diffs reloadOswaldo Ferreira
2018-06-21Don't expose project names in various countersYorick Peterse
Various counters would expose either project names, or full project paths (e.g. "gitlab-org/gitlab-ce"). This commit changes various places where we use "add_event" so we no longer expose (potentially) private information.
2018-06-19Move forking to GitalyZeger-Jan van de Weg
Closes https://gitlab.com/gitlab-org/gitaly/issues/817 Closes https://gitlab.com/gitlab-org/gitaly/issues/1236
2018-06-18Rename persisted? to data_persisted?Shinya Maeda
2018-06-15Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-06-13Move GC RPCs to mandatoryZeger-Jan van de Weg
Closes https://gitlab.com/gitlab-org/gitaly/issues/354
2018-06-12Find and mark more Git disk access locations, part 2Jacob Vosmaer
2018-06-12Merge branch 'master' into build-chunks-on-object-storageShinya Maeda
2018-06-07Resolve "Hashed Storage: Make possible to migrate single project"Gabriel Mazetto
2018-06-07Allow to store BuildTraceChunks on Object StorageKamil Trzciński
2018-06-06Support LFS objects when creating a project by importFrancisco Javier López
2018-06-06Move GC/Repack to OptOutKim Carlbäcker
2018-06-06Rename worker to ArchiveTracesCronWorkerShinya Maeda
2018-06-06Create a method for failed_archive_counterShinya Maeda
2018-06-06Add metric for failed archiving with stale live traceShinya Maeda
2018-06-06Fix the query to select stale live tracesShinya Maeda
2018-06-06Move find_builds_from_stale_live_traces method to Ci::BuildShinya Maeda
2018-06-06Rename find_stale_in_batches to find_builds_from_stale_live_trace. Fix commentsShinya Maeda