Skip to content

Commit 74f8d28

Browse files
committedDec 9, 2016
Fix demo app
- Remove unnecessary gems - Fix Sidekiq Web URL
1 parent c6d0741 commit 74f8d28

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed
 

‎demo/Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
source 'https://rubygems.org'
22

33
gem 'rails'
4-
gem 'sinatra'
5-
gem 'celluloid'
64
gem 'launchy'
75
gem 'sidekiq', github: 'mperham/sidekiq'
86
gem 'sidekiq-limit_fetch', path: '..'

‎demo/Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace :demo do
7878
Rack::Server.start app: Sidekiq::Web, Port: 3000
7979
end
8080
sleep 1
81-
Launchy.open 'http://127.0.0.1:3000/workers?poll=true'
81+
Launchy.open 'http://127.0.0.1:3000/busy?poll=true'
8282
end
8383

8484
def run_sidekiq_workers(options)

0 commit comments

Comments
 (0)
Please sign in to comment.