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
path: root/lib
AgeCommit message (Collapse)Author
2017-01-26Revert "Make sure TraceReader uses Encoding.default_external"Lin Jen-Shin
This reverts commit e9d8fc94e6e13f8b2d145f549d4a939ca25a3d93.
2017-01-26Make sure TraceReader uses Encoding.default_externalLin Jen-Shin
Encoding.default_external was chosen over Encoding.default_internal because File.read is returning Encoding.default_external, therefore we should align with it. Alternatively, we could force both of them to be Encoding.default_internal. However, ideally this should be determined by different projects. For example, some projects might want to use an encoding different to what GitLab is using. This might not happen soon though. Closes #27052
2017-01-26Merge branch 'copy-as-md' into 'master' Jacob Schatz
Copying a rendered issue/comment will paste into GFM textareas as actual GFM See merge request !8597
2017-01-25Merge branch 'refresh-authorizations-fork-join' into 'master' Douwe Maan
Fix race conditions for AuthorizedProjectsWorker Closes #26194 and #26310 See merge request !8701
2017-01-25Merge branch 'fix-ci-requests-concurrency' into 'master' Grzegorz Bizon
Fix CI requests concurrency See merge request !8760
2017-01-25Merge branch 'backport-ee-changes-for-build-minutes' into 'master' Grzegorz Bizon
Backport changes introduced by https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1078 See merge request !8657
2017-01-25Merge branch 'master' into copy-as-mdDouwe Maan
# Conflicts: # app/assets/javascripts/lib/utils/common_utils.js.es6
2017-01-25Return struct instead of multiple valuesKamil Trzcinski
2017-01-25Fix race conditions for AuthorizedProjectsWorkerYorick Peterse
There were two cases that could be problematic: 1. Because sometimes AuthorizedProjectsWorker would be scheduled in a transaction it was possible for a job to run/complete before a COMMIT; resulting in it either producing an error, or producing no new data. 2. When scheduling jobs the code would not wait until completion. This could lead to a user creating a project and then immediately trying to push to it. Usually this will work fine, but given enough load it might take a few seconds before a user has access. The first one is problematic, the second one is mostly just annoying (but annoying enough to warrant a solution). This commit changes two things to deal with this: 1. Sidekiq scheduling now takes places after a COMMIT, this is ensured by scheduling using Rails' after_commit hook instead of doing so in an arbitrary method. 2. When scheduling jobs the calling thread now waits for all jobs to complete. Solution 2 requires tracking of job completions. Sidekiq provides a way to find a job by its ID, but this involves scanning over the entire queue; something that is very in-efficient for large queues. As such a more efficient solution is necessary. There are two main Gems that can do this in a more efficient manner: * sidekiq-status * sidekiq_status No, this is not a joke. Both Gems do a similar thing (but slightly different), and the only difference in their name is a dash vs an underscore. Both Gems however provide far more than just checking if a job has been completed, and both have their problems. sidekiq-status does not appear to be actively maintained, with the last release being in 2015. It also has some issues during testing as API calls are not stubbed in any way. sidekiq_status on the other hand does not appear to be very popular, and introduces a similar amount of code. Because of this I opted to write a simple home grown solution. After all, all we need is storing a job ID somewhere so we can efficiently look it up; we don't need extra web UIs (as provided by sidekiq-status) or complex APIs to update progress, etc. This is where Gitlab::SidekiqStatus comes in handy. This namespace contains some code used for tracking, removing, and looking up job IDs; all without having to scan over an entire queue. Data is removed explicitly, but also expires automatically just in case. Using this API we can now schedule jobs in a fork-join like manner: we schedule the jobs in Sidekiq, process them in parallel, then wait for completion. By using Sidekiq we can leverage all the benefits such as being able to scale across multiple cores and hosts, retrying failed jobs, etc. The one downside is that we need to make sure we can deal with unexpected increases in job processing timings. To deal with this the class Gitlab::JobWaiter (used for waiting for jobs to complete) will only wait a number of seconds (30 by default). Once this timeout is reached it will simply return. For GitLab.com almost all AuthorizedProjectWorker jobs complete in seconds, only very rarely do we spike to job timings of around a minute. These in turn seem to be the result of external factors (e.g. deploys), in which case a user is most likely not able to use the system anyway. In short, this new solution should ensure that jobs are processed properly and that in almost all cases a user has access to their resources whenever they need to have access.
2017-01-25Merge branch 'no_project_notes' into 'master' Sean McGivern
Support notes without a project (personal snippets notes) See merge request !8468
2017-01-25Merge branch 'grapify-branch-api' into 'master'Rémy Coutable
Grapify last endpoint of the branches API See merge request !8755
2017-01-25Fix specsKamil Trzcinski
2017-01-25Fix picking CI buildsKamil Trzcinski
The conflict happens when we try to update a build, but fail to do so due to fact that we update the same build concurrently for two different runners.
2017-01-25Remove unneeded code and fix offensesKamil Trzcinski
2017-01-25address commentsJarka Kadlecova
2017-01-25Merge branch 'mrchrisw/rake-redis' into 'master' Stan Hu
Add redis version to info rake task See merge request !8283
2017-01-25Add redis version to info rake taskChris Wilson
2017-01-25Merge branch 'master' into copy-as-mdDouwe Maan
2017-01-24Merge remote-tracking branch 'origin/master' into ↵Kamil Trzcinski
backport-ee-changes-for-build-minutes
2017-01-24Grapify last endpoint of the branches APIRobert Schilling
2017-01-24Merge branch 'dont-persist-application-settings-in-test-env-bis' into 'master' Robert Speicher
Dont persist application settings in test env See merge request !8715
2017-01-24Merge branch '24833-Allow-to-search-by-commit-hash-within-project' into ↵Sean McGivern
'master' Allows to search within project by commit's hash #24833 Closes #24833 See merge request !8028
2017-01-24Merge branch 'zj-mattermost-api-update' into 'master' Grzegorz Bizon
Small update to the Mattermost API See merge request !8712
2017-01-24Merge branch 'grapify-deploy-keys' into 'master' Rémy Coutable
Grapify all endpoints of the deploy keys API See merge request !8721
2017-01-24Search feature: redirects to commit page if query is commit sha and only ↵YarNayar
commit found See !8028 and #24833
2017-01-24Allows to search within project by commit's hashYarNayar
Was proposed in #24833
2017-01-24Small update to the Mattermost APIZ.J. van de Weg
These changes make it possible to wrap multiple API requests in one session.
2017-01-24Merge branch 'rs-pick-security-fixes' into 'master' Robert Speicher
Pick security fixes from 8.16.1 et al into master Closes #26813, #26249, #26259, #26243, #26242 See merge request !8724
2017-01-23Merge branch ↵Douwe Maan
'22619-add-an-email-address-to-unsubscribe-list-header-in-email' into 'master' Handle unsubscribe notification via email Closes #22619 See merge request !6597
2017-01-23Merge branch '22638-creating-a-branch-matching-a-wildcard-fails' into 'master' Douwe Maan
Allow creating protected branches when user can merge to such branch Closes #22638 See merge request !8458
2017-01-23Merge branch 'fix-guest-access-posting-to-notes' into 'security' Robert Speicher
Prevent users from creating notes on resources they can't access See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2054
2017-01-23Merge branch 'fix-api-mr-permissions' into 'security'Robert Speicher
Ensure that only privileged users can access merge requests in the API See merge request !2053
2017-01-23Merge branch 'fix-users-deleting-public-deployment-keys' into 'security' Robert Speicher
Fix users being able to delete instance public deployment keys See merge request !2049
2017-01-23Merge branch '22974-trigger-service-events-through-api' into 'master' Douwe Maan
adds events to services api deserialization Closes #22974 See merge request !8324
2017-01-23Grapify all endpoints of the deploy keys APIRobert Schilling
2017-01-23Rescue from ActiveRecord::UnknownAttributeError and fallback to fake settingsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-23Revert "Merge branch 'revert-9cac0317' into 'master' "Grzegorz Bizon
This reverts commit c20934869f7dc8cfbdbafb6ecb7b1305452c9e8a, reversing changes made to 4b7ec44b91e0571d209c790d54947ba1756dac0e.
2017-01-23Merge branch 'feature/success-warning-icons-in-stages-builds' into 'master' Kamil Trzciński
Use a warning icon for a stage with allowed to fail builds Closes #21948 See merge request !8503
2017-01-22adds test suiteTiago Botelho
2017-01-22adds events to services api deserializationTiago Botelho
2017-01-22Revert "Merge branch 'dont-persist-application-settings-in-test-env' into ↵Grzegorz Bizon
'master'" This reverts merge request !8573
2017-01-21Revert "Merge branch 'backport-fix-load-error' into 'master'"Stan Hu
This reverts merge request !8671
2017-01-20Don't define ApplicationSetting defaults in a constantRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-20Merge branch 'fix/import-users' into 'master' Rémy Coutable
Fix import no longer mapping users as admin Closes #25346 See merge request !8625
2017-01-20Merge branch 'dont-persist-application-settings-in-test-env' into 'master' Robert Speicher
Don't persist application settings in test env See merge request !8573
2017-01-20fix member mapper specJames Lopez
2017-01-20Backport changes introduced by ↵Kamil Trzcinski
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1083
2017-01-20Fix specsKamil Trzcinski
2017-01-20Merge remote-tracking branch 'origin/master' into 21698-redis-runner-last-buildKamil Trzcinski
2017-01-20Fix specsKamil Trzcinski