Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-30use uuids for guid generationJonne Haß
2013-07-03bumped unicorn timeout to 90 seconds and made it configurableJonne Haß
2013-05-19Refactor config/ directoryJonne Haß
* Get rid of early pathname requirement * Use require_relative where approciate * Drop unused files * Imported new application.rb, environment.rb and environments/* from fresh Rails app * Cleaned up boot.rb * Load config in boot.rb * Deduplicate environments/integration*.rb * Move username blacklist into defaults.yml * Ruby 1.9 Hash syntax everywhere * Reorganize lib/diaspora/markdownify to match conventions * Get rid of full path requires where possible * Add dummy content to production section diaspora.yml.example to prevent warning * Drop sqlite? method * Move postgres? method into ConfigurationMethods * Drop token authentication from User
2013-04-04bump sidekiq and cleanup unicorn.rbJonne Haß
2013-03-22Bye Resque. Ohai Sidekiq.Jonne Haß
* Dropped all references to Resque * Moved all jobs under app/workers since that's the Sidekiq convention * Renamed Jobs module to Worker to match new location * Adapted all jobs to Sidekiq * Replaced all enqueue calls with perform_async * Dropped Resque hacks from specs and features, replaced with sidekig/testing in RSpec and sidekig/testing/inline in Cucumber * Updated scripts to start a Sidekiq server * Inline Sidekiq sinatra app * Let Sidekiq create the actual Redis instance * Workaround already initialized constant warnings in service models * Resolved ToDo in one job definition by creating proper exception clases for some errors in receiving posts * Added sidekiq section to configuration to make it completly configurable to the user * Add Sidekiq middleware for clean backtraces * Delay HttpMulti retry to give offline pods a chance to come back up * Do not retry on GUID already taken and alike errors * Be graceful about deleted posts in GatherOEmbedData
2013-03-06Pass the real values to stderr_path and stdout_path in unicorn.rb since it ↵Jonne Haß
runs a case statement on them
2013-01-16Write unicorn stderr and stdout logDiaspora Europe
2012-11-30* made number of unicorn worker processes configurableJonne Haß
* made configuration loader indepenent of rails * corrected mismatch between example and default config (server.db/server.database)
2012-11-30Remove REEs garbage collection [ci skip]Dennis Schubert
We are not using REE anymore, so...
2012-10-19refactor script/server and associated stuffJonne Haß
2012-09-26add possibility to embed a resque worker into the unicorn processJonne Haß
2012-09-26New configuration systemJonne Haß
* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
2012-09-15Unify redis initializationJonne Haß
REDISTOGO_URL is now deprecated in favor of REDIS_URL which is supported by the redis gem too.
2012-01-27preload_app in unicorndanielgrippi
2012-01-25add unicorn back in. only use one worker process for now. also, move ↵danielgrippi
chrome_frame middleware into the correct load path in lib. [ci skip]
2012-01-16Revert "move unicorn into the heroku group till we decide if we switch ↵danielgrippi
completly to it or not" This reverts commit 641cedf343afd1266d3e5aad1b5bb9506e33f65e. Revert "Merge pull request #2663 from torrancew/with_unicorn" This reverts commit 2a2efd097f95190b646b6e6e175d73e2c4089b06, reversing changes made to 78978f051e9843a20ba18e06e6fce3dbacd800de.
2012-01-15Add unicorn to bundle, supply a basic unicorn config.Tray Torrance