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
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-03-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-10Add a rubocop for Rails.loggerMayra Cabrera
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
2019-04-10Externalize strings in app/workersMartin Wortschack
- email_receiver_worker - object_storage/migrate_uploads_worker - Update PO file
2018-11-07Apply patches when creating MR via emailBob Van Landuyt
This allows users to add patches as attachments to merge request created via email. When an email to create a merge request is sent, all the attachments ending in `.patch` will be applied to the branch specified in the subject of the email. If the branch did not exist, it will be created from the HEAD of the repository. When the patches could not be applied, the error message will be replied to the user. The patches can have a maximum combined size of 2MB for now.
2018-07-09Resolve Naming/UncommunicativeMethodLin Jen-Shin
2018-06-27Enable frozen string literals for app/workers/*.rbgfyoung
2017-12-05Merge branch 'dm-application-worker' into 'master'Sean McGivern
Add ApplicationWorker and make every worker include it See merge request gitlab-org/gitlab-ce!15632
2017-12-05Add ApplicationWorker and make every worker include itDouwe Maan
2017-12-05Create merge request from emailJan Provaznik
* new merge request can be created by sending an email to the specific email address (similar to creating issues by email) * for the first iteration, source branch must be specified in the mail subject, other merge request parameters can not be set yet * user should enable "Receive notifications about your own activity" in user settings to receive a notification about created merge request Part of #32878
2017-08-02Don't send rejection mails for all auto-generated mailsLin Jen-Shin
Also make it easier to have mailer helper
2016-10-21Re-organize queues to use for SidekiqYorick Peterse
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
2016-06-15An instruction for what to doLin Jen-Shin
2016-05-24This is easier to read for me. No early returnLin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/commit/76dbafba86dda96b7ba2f93fc7e07eea3ca48302#note_4575102
2016-05-23Merge the places where exceptions could be raisedLin Jen-Shin
2016-05-19so we use separate classes to handle different tasksLin Jen-Shin
2016-05-17Report better errors. TODO: Enable skipped testLin Jen-Shin
2016-05-17Update wording because we're overloading UserNotAuthorizedErrorLin Jen-Shin
2016-05-17Handle InvalidIssueError as InvalidNoteErrorLin Jen-Shin
2015-11-30fix specsValery Sizov
2015-11-26Migrate mailers to ActiveJobValery Sizov
2015-09-21Rename reply_by_email to incoming_email to prepare for the future.Douwe Maan
2015-08-24Ignore empty incoming messages.Douwe Maan
2015-08-21Block blocked users from replying to threads by email.Douwe Maan
2015-08-20Make error class names more consistent.Douwe Maan
2015-08-20Extract ReplyParser and AttachmentUploader from Receiver.Douwe Maan
2015-08-19Send a rejection email when the incoming email couldn't be processed.Douwe Maan
2015-08-19Changes and stuff.Douwe Maan
2015-08-19Reply by email POCDouwe Maan