Skip to content

Instantly share code, notes, and snippets.

@zunda
Last active July 4, 2017 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zunda/8ef9006fd91b0d53238e1c5558379778 to your computer and use it in GitHub Desktop.
Save zunda/8ef9006fd91b0d53238e1c5558379778 to your computer and use it in GitHub Desktop.
Trying to reproduce the error on https://github.com/tootsuite/mastodon/issues/4039
$ uname -srm
FreeBSD 11.0-RELEASE-p9 amd64
$ su
# pkg install ruby-2.3.4_1,1
# pkg install git-2.13.2
# exit
$ git clone https://github.com/tootsuite/mastodon.git
$ cd mastodon
$ ruby -v -rpsych -e 'p Psych.load(IO.read("config/sidekiq.yml"))'
ruby 2.3.4p301 (2017-03-30 revision 58214) [amd64-freebsd11]
{:concurrency=>5, :queues=>["default", "push", "pull", "mailers"], :schedule=>{"subscriptions_scheduler"=>{"cron"=>"0 5 * * *", "class"=>"Scheduler::SubscriptionsScheduler"}, "media_cleanup_scheduler"=>{"cron"=>"5 4 * * *", "class"=>"Scheduler::MediaCleanupScheduler"}, "feed_cleanup_scheduler"=>{"cron"=>"0 0 * * *", "class"=>"Scheduler::FeedCleanupScheduler"}, "doorkeeper_cleanup_scheduler"=>{"cron"=>"1 1 * * 0", "class"=>"Scheduler::DoorkeeperCleanupScheduler"}}}
$ git clone https://github.com/tootsuite/mastodon.git
$ cd mastodon
$ git checkout v1.4.7
$ ruby23 -v -rpsych -e 'p Psych.load(IO.read("config/sidekiq.yml"))'
ruby 2.3.4p301 (2017-03-30 revision 58214) [x86_64-netbsd]
{:concurrency=>5, :queues=>["default", "push", "pull", "mailers"], :schedule=>{"subscriptions_scheduler"=>{"cron"=>"0 5 * * *", "class"=>"Scheduler::SubscriptionsScheduler"}, "media_cleanup_scheduler"=>{"cron"=>"5 4 * * *", "class"=>"Scheduler::MediaCleanupScheduler"}, "feed_cleanup_scheduler"=>{"cron"=>"0 0 * * *", "class"=>"Scheduler::FeedCleanupScheduler"}, "doorkeeper_cleanup_scheduler"=>{"cron"=>"1 1 * * 0", "class"=>"Scheduler::DoorkeeperCleanupScheduler"}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment