From: Eugen Rochko Date: Fri, 12 May 2017 15:46:14 +0000 (+0200) Subject: Fix sidekiq "port" being wrong (#3014) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=0cb4b9205c711223df6855d2027495a30ea04326;p=mastodon.git Fix sidekiq "port" being wrong (#3014) Sidekiq doesn't need a port, however that env var is used for generating URLs in development, so when foreman sets it wrong, you get bad URLs from the streaming API during development --- diff --git a/Procfile.dev b/Procfile.dev index 80666280d..9084b4263 100644 --- a/Procfile.dev +++ b/Procfile.dev @@ -1,4 +1,4 @@ web: PORT=3000 bundle exec puma -C config/puma.rb -sidekiq: bundle exec sidekiq +sidekiq: PORT=3000 bundle exec sidekiq stream: PORT=4000 yarn run start webpack: ./bin/webpack-dev-server --host 0.0.0.0