summaryrefslogtreecommitdiff
path: root/app/workers/repository_import_worker.rb
Commit message (Collapse)AuthorAgeFilesLines
* Update repository_import_worker.rbJames Lopez2016-06-021-1/+1
|
* some refactoring and fixing specJames Lopez2016-06-021-2/+1
|
* Mask credentials from URL when import of project has failed.Rubén Dávila2016-05-181-1/+1
|
* Moved cache expiration code to Repository hooksYorick Peterse2016-02-231-1/+1
| | | | | This keeps all the cache expiration code in a single file/class instead of spreading it all across the codebase.
* Expire caches after forking/importing a repositoryYorick Peterse2016-02-171-0/+1
| | | | | | | | This ensures the caches for Repository#empty? and Repository#has_visible_content? are flushed after a repository has been imported or forked. Fixes gitlab-org/gitlab-ce#13505
* Extract Projects::ImportService service from RepositoryImportWorkerDouglas Barbosa Alexandre2016-01-251-39/+7
|
* Remove accidentally added line. #3598issue_3598Rubén Dávila2015-11-201-3/+0
| | | | It should exist in EE only.
* Remove unused variable in repository importDouwe Maan2015-11-181-1/+1
|
* Store and show reason why import failed.Douwe Maan2015-11-181-26/+41
|
* FogBugz project importJared Szechy2015-09-081-13/+22
|
* Remove user OAuth tokens stored in database for Bitbucket, GitHub, and GitLabStan Hu2015-08-231-1/+2
| | | | | | | | | | | | | | | | | | | | | | | and request them each session. Pass these tokens to the project import data. This prevents the need to encrypt these tokens and clear them in case they expire or get revoked. For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get an Error 500 with no way to recover: ``` Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000 Processing by Import::BitbucketController#status as HTML Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms) NameError (uninitialized constant Import::BitbucketController::Unauthorized): app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized' ``` Closes #1871
* Revert "Merge branch 'revert-satellites' into 'master' "Dmitriy Zaporozhets2015-08-111-1/+0
| | | | | This reverts commit 5daf44b7c86e0e2641a902b1da8b01d91fa3dbfa, reversing changes made to 2f706fbd231cabe7a76a5d17ac44285aaaf8592c.
* Revert "Merge branch 'drop-satellites'"Dmitriy Zaporozhets2015-08-111-0/+1
| | | | | | | This reverts commit 957e849f41d96fa9778fcdd06792d2f0274b29ab, reversing changes made to 6b9dbe9f5a175a8162abf296367f561bab3eea1a. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'master' into drop-satellitesDmitriy Zaporozhets2015-08-041-1/+1
|\ | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Store commit count in project tableadvanced-cacheDmitriy Zaporozhets2015-07-171-1/+1
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Remove satellitesDmitriy Zaporozhets2015-07-151-1/+0
|/
* Allow projects to be imported from Google Code.Douwe Maan2015-04-031-0/+2
|
* Delete deploy key from Bitbucket after importing.Douwe Maan2015-02-241-18/+18
|
* Add Bitbucket importer.Douwe Maan2015-02-241-0/+2
|
* gitlab.com importer: refactorigValery Sizov2015-02-051-7/+7
|
* GitLab.com integration: refactoringValery Sizov2015-02-051-1/+1
|
* GitLab integration. ImporterValery Sizov2015-02-051-0/+2
|
* Github ImporterValery Sizov2015-01-101-1/+7
|
* Add parenthesis to function def with arguments.Ciro Santilli2014-10-031-1/+1
|
* Added update repository size to repository importCSchulz2014-06-111-1/+2
|
* Add retry feature to project importDmitriy Zaporozhets2014-03-121-2/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Add project import state machineDmitriy Zaporozhets2014-03-121-2/+4
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Removed Project#discover_default_branch since it not needed any moreDmitriy Zaporozhets2013-11-081-1/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Repository import during project creation often return timeout for medium ↵Dmitriy Zaporozhets2013-08-121-0/+22
and large repos. So lets do it async. First create project, then import repo and create satellite with Sidekiq