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
diff options
context:
space:
mode:
authorJonne Haß <me@mrzyx.de>2013-02-19 12:34:41 +0400
committerJonne Haß <me@mrzyx.de>2013-03-22 02:39:07 +0400
commit79a79d65d684b6cfa93e1d2dde9ac7abcfb7a481 (patch)
tree669d78aa2e901133bf58ec26c98c3e705f13bff3 /.foreman
parent3fc3b249e71f05a664a81d47d35f9b2815de5e97 (diff)
Bye Resque. Ohai Sidekiq.
* 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
Diffstat (limited to '.foreman')
-rw-r--r--.foreman2
1 files changed, 1 insertions, 1 deletions
diff --git a/.foreman b/.foreman
index da229edb6..a39123f3a 100644
--- a/.foreman
+++ b/.foreman
@@ -1,2 +1,2 @@
port: 3000
-formation: web=1,worker=0
+formation: web=1,sidekiq=0