resque-web 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +39 -0
- data/Rakefile +34 -0
- data/app/assets/images/resque_web/idle.png +0 -0
- data/app/assets/images/resque_web/lifebuoy.png +0 -0
- data/app/assets/images/resque_web/poll.png +0 -0
- data/app/assets/images/resque_web/rails.png +0 -0
- data/app/assets/images/resque_web/working.png +0 -0
- data/app/assets/javascripts/resque_web/application.js +105 -0
- data/app/assets/javascripts/resque_web/bootstrap.js.coffee +4 -0
- data/app/assets/javascripts/resque_web/jquery.relative-date.js +47 -0
- data/app/assets/stylesheets/resque_web/application.css +13 -0
- data/app/assets/stylesheets/resque_web/bootstrap_and_overrides.css +146 -0
- data/app/controllers/resque_web/application_controller.rb +15 -0
- data/app/controllers/resque_web/failures_controller.rb +62 -0
- data/app/controllers/resque_web/overview_controller.rb +7 -0
- data/app/controllers/resque_web/queues_controller.rb +12 -0
- data/app/controllers/resque_web/stats_controller.rb +17 -0
- data/app/controllers/resque_web/workers_controller.rb +18 -0
- data/app/controllers/resque_web/working_controller.rb +4 -0
- data/app/helpers/resque_web/application_helper.rb +65 -0
- data/app/helpers/resque_web/failures_helper.rb +54 -0
- data/app/helpers/resque_web/overview_helper.rb +6 -0
- data/app/helpers/resque_web/queues_helper.rb +72 -0
- data/app/helpers/resque_web/stats_helper.rb +54 -0
- data/app/helpers/resque_web/workers_helper.rb +16 -0
- data/app/helpers/resque_web/working_helper.rb +19 -0
- data/app/views/layouts/resque_web/application.html.erb +58 -0
- data/app/views/resque_web/failures/_failed_job.html.erb +53 -0
- data/app/views/resque_web/failures/_overview.html.erb +24 -0
- data/app/views/resque_web/failures/index.html.erb +33 -0
- data/app/views/resque_web/failures/show.html.erb +20 -0
- data/app/views/resque_web/overview/show.html.erb +4 -0
- data/app/views/resque_web/queues/_queues.html.erb +4 -0
- data/app/views/resque_web/queues/_queues_advanced.html.erb +14 -0
- data/app/views/resque_web/queues/_queues_basic.html.erb +17 -0
- data/app/views/resque_web/queues/index.html.erb +1 -0
- data/app/views/resque_web/queues/show.html.erb +26 -0
- data/app/views/resque_web/stats/key.html.erb +26 -0
- data/app/views/resque_web/stats/keys.html.erb +19 -0
- data/app/views/resque_web/stats/redis.html.erb +14 -0
- data/app/views/resque_web/stats/resque.html.erb +14 -0
- data/app/views/resque_web/workers/index.html.erb +19 -0
- data/app/views/resque_web/workers/show.html.erb +38 -0
- data/app/views/resque_web/working/_working.html.erb +34 -0
- data/app/views/resque_web/working/index.html.erb +1 -0
- data/config/initializers/resque_config.rb +3 -0
- data/config/routes.rb +26 -0
- data/lib/resque_web.rb +4 -0
- data/lib/resque_web/engine.rb +8 -0
- data/lib/resque_web/version.rb +3 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +1351 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/02a14af754d35f9d015020c827dc4aad +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/060ba1e3c27350033cb45603b40ec988 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/14882e8f1f7d019b37950944b1053585 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/15d6969ab8e6cc86d7e4ec72a9f29473 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1cabd5edcfb985bf0e754597f453c2d8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1f93ad5cf36f5c7e5bec2b9cecedfe5c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2352f28661a506c2c3e144d28bf6a6ca +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/24fe9e2e6b73f666f6f50460b5fe12db +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2768ee82dea9ebd337e20faa4c08eda4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/29c7be01674c14314b1321da043c31cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/36bf84c5368755f6fbc0c1808cfe7c5d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3fde4850b9ad7516ecd360a4c20cae8b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/47e84a019922f151c4815a3cd738beb6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4ff25675e9d69ac5d68dff1d4372f3d1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/530c2753f447f8c666f628c5b5d65782 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/58c7ee7b861e3bd17b1eb3c09a0ccb7e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5ae7043abf033ad9c1db3190239296f4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6104f6b3d705c20e2485d2bb6f388f11 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/67bdb77a662fa6c60ca6ec804ec4e72c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6ee0033c04cc130b81becd605709135b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/706b6b4aca8f925cbbff8a4bf161cd03 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/79973091687030ef9b77e73884ab0c78 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7bdd86db98ea61e2b45fa7a427617a3c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7eab29f4bea09503894bcabf91a971b0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7eadf8ac6771f3b20086c935c28b0b95 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/821dd3a673cddb023723b5a4b98fd493 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/885603ea8649d78da8ba6674b31dd289 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8c86ace126a96b8c90b30f12a136fa81 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9048f98bf002a866ef7831c71f7124d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/99cfb6fcfcd8fc23cc41ccfa12576a38 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9a13af754490df860af9928bcd00fbd3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9b1a227146b80c04976c0a885c248f82 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9f48e8c551b5f898ca5667d92067e33d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a0113b5b044a3468edab999708723b3d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a64f702451323ab621d1836cdb352123 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aa5c2d7aaabb3df93a734411e42a3bfc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/acda3fb5202cc9aefb599fd43a058105 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b02ffe2d07d7ce606d1c3a0656d82bfe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b5e993500308f32fff09cd7e0ee89efd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bae95ffbad9e9c33e3d4492a4b986c0b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/baf363f79f6cd9b6a2b3688b77b58aba +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bc2f95ead37a4ea1f050f6f21a446d7c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/be47e0dd1cd9914997311db690cf38d7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bfc8b2b4f4c3f91fdc360b426adb2d94 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c0a0dbfbf315a3edf26670c0f5ca7ecb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c2607067849ffce81a050a64bdf2e31b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c4902d10c0dbd2ef1e2edbb71c13456a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c79e7b418287c2b4155c8aecd24be5a7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c7f7c001ba2ad5623ead9e6f2d6188e9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c81b1182b5c851c35680c7acc88d4812 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c981eb8fa4e3e9ae04dbf1b7b8d7f395 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cb1265ab418e2013b182c8deafcf897e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cee0dd733846ecda4ac940c6f033fb28 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ceebd7d45f23e34cda37b878e2af5b18 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d0cf471bea69c5583f5cb22f924c9d81 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d3347e44949d8909be6fb1d64cfb9967 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc0f4af8c3937297fe2fd3f5f4906763 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e2bae9a171482111f585b481dc2c04c8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e64aa4663498f985d9a5c2c65a0f2401 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ebf2449fa00d257e175bd62b6a757bd3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eece52c31fc27f6dbb1d3e9dad9c6a67 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f28711adf8b5584c6956034b86f4cbee +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f375226842bb99acc2a5a8f2396b54d3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f83b6fecae01f81acf9c39e710258b98 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fa282debca304f7fac3307d091f5ecac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fab96f7950f4025de51c865e118904a7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ff4777d609a0a67e637cc1530d6dc7b2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
- data/test/functional/failures_controller_test.rb +73 -0
- data/test/functional/overview_controller_test.rb +7 -0
- data/test/functional/queues_controller_test.rb +20 -0
- data/test/functional/stats_controller_test.rb +7 -0
- data/test/functional/workers_controller_test.rb +7 -0
- data/test/functional/working_controller_test.rb +7 -0
- data/test/test_helper.rb +23 -0
- data/test/unit/helpers/failures_helper_test.rb +4 -0
- data/test/unit/helpers/jobs_helper_test.rb +4 -0
- data/test/unit/helpers/overview_helper_test.rb +4 -0
- data/test/unit/helpers/queues_helper_test.rb +4 -0
- data/test/unit/helpers/retry_controller_helper_test.rb +4 -0
- data/test/unit/helpers/stats_helper_test.rb +4 -0
- data/test/unit/helpers/workers_helper_test.rb +4 -0
- data/test/unit/helpers/working_helper_test.rb +4 -0
- metadata +632 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Dummy</title>
|
5
|
+
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
6
|
+
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
data/test/dummy/bin/rake
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require(*Rails.groups)
|
6
|
+
require "resque_web"
|
7
|
+
|
8
|
+
module Dummy
|
9
|
+
class Application < Rails::Application
|
10
|
+
# Settings in config/environments/* take precedence over those specified here.
|
11
|
+
# Application configuration should go into files in config/initializers
|
12
|
+
# -- all .rb files in that directory are automatically loaded.
|
13
|
+
|
14
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
15
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
16
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
17
|
+
|
18
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
19
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
20
|
+
# config.i18n.default_locale = :de
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Raise an error on page load if there are pending migrations
|
23
|
+
config.active_record.migration_error = :page_load
|
24
|
+
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
28
|
+
config.assets.debug = true
|
29
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
+
config.serve_static_assets = false
|
24
|
+
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
31
|
+
|
32
|
+
# Generate digests for assets URLs.
|
33
|
+
config.assets.digest = true
|
34
|
+
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
37
|
+
|
38
|
+
# Specifies the header that your server uses for sending files.
|
39
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
41
|
+
|
42
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
|
+
# config.force_ssl = true
|
44
|
+
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
47
|
+
|
48
|
+
# Prepend all log lines with the following tags.
|
49
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
|
51
|
+
# Use a different logger for distributed setups.
|
52
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
53
|
+
|
54
|
+
# Use a different cache store in production.
|
55
|
+
# config.cache_store = :mem_cache_store
|
56
|
+
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
59
|
+
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
+
# config.assets.precompile += %w( search.js )
|
63
|
+
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
|
+
# config.action_mailer.raise_delivery_errors = false
|
67
|
+
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
70
|
+
config.i18n.fallbacks = true
|
71
|
+
|
72
|
+
# Send deprecation notices to registered listeners.
|
73
|
+
config.active_support.deprecation = :notify
|
74
|
+
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
80
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = 'a7feb21f28a754e317f7e7656267efeb5c2665867f952e453e8731e7dc272c661fef7da3e0dff4736bef31674b323cdf75004a0991c89b87fc9be834db2223cc'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters :format => [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
File without changes
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,1351 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
3
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
4
|
+
Parameters: {"id"=>"123"}
|
5
|
+
Redirected to http://test.host/resque_web/failures
|
6
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
7
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
8
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
9
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
10
|
+
Redirected to http://test.host/resque_web/failures
|
11
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
12
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
15
|
+
Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
16
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
19
|
+
Parameters: {"id"=>"123"}
|
20
|
+
Redirected to http://test.host/resque_web/failures
|
21
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
22
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
25
|
+
Parameters: {"id"=>"123"}
|
26
|
+
Redirected to http://test.host/resque_web/failures
|
27
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
28
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
31
|
+
Redirected to http://test.host/resque_web/failures
|
32
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
33
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
34
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
35
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
36
|
+
Redirected to http://test.host/resque_web/failures
|
37
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
38
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
39
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
40
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
41
|
+
Parameters: {"queue"=>"myqueue"}
|
42
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
43
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
44
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
45
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
46
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
47
|
+
Parameters: {"id"=>"example_queue"}
|
48
|
+
Redirected to http://test.host/resque_web/queues
|
49
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
50
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
51
|
+
Connecting to database specified by database.yml
|
52
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
53
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
54
|
+
Parameters: {"id"=>"123"}
|
55
|
+
Redirected to http://test.host/resque_web/failures
|
56
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
57
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
58
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
59
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
60
|
+
Redirected to http://test.host/resque_web/failures
|
61
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
62
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
63
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
64
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
65
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
66
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
67
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
68
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
69
|
+
Parameters: {"id"=>"123"}
|
70
|
+
Redirected to http://test.host/resque_web/failures
|
71
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
72
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
73
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
74
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
75
|
+
Parameters: {"id"=>"123"}
|
76
|
+
Redirected to http://test.host/resque_web/failures
|
77
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
78
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
79
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
80
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
81
|
+
Redirected to http://test.host/resque_web/failures
|
82
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
83
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
84
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
85
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
86
|
+
Redirected to http://test.host/resque_web/failures
|
87
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
88
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
89
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
90
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
91
|
+
Parameters: {"queue"=>"myqueue"}
|
92
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
93
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
94
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
95
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
96
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
97
|
+
Parameters: {"id"=>"example_queue"}
|
98
|
+
Redirected to http://test.host/resque_web/queues
|
99
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
100
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
101
|
+
Connecting to database specified by database.yml
|
102
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
103
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
104
|
+
Parameters: {"id"=>"123"}
|
105
|
+
Redirected to http://test.host/resque_web/failures
|
106
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
109
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
110
|
+
Redirected to http://test.host/resque_web/failures
|
111
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
112
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
114
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
115
|
+
Completed 200 OK in 71ms (Views: 70.1ms | ActiveRecord: 0.0ms)
|
116
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
118
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
119
|
+
Parameters: {"id"=>"123"}
|
120
|
+
Redirected to http://test.host/resque_web/failures
|
121
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
125
|
+
Parameters: {"id"=>"123"}
|
126
|
+
Redirected to http://test.host/resque_web/failures
|
127
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
128
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
129
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
130
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
131
|
+
Redirected to http://test.host/resque_web/failures
|
132
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
133
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
135
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
136
|
+
Redirected to http://test.host/resque_web/failures
|
137
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
138
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
140
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
141
|
+
Parameters: {"queue"=>"myqueue"}
|
142
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
143
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
146
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
147
|
+
Parameters: {"id"=>"example_queue"}
|
148
|
+
Redirected to http://test.host/resque_web/queues
|
149
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
150
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
151
|
+
Connecting to database specified by database.yml
|
152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
153
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
154
|
+
Parameters: {"id"=>"123"}
|
155
|
+
Redirected to http://test.host/resque_web/failures
|
156
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
159
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
160
|
+
Redirected to http://test.host/resque_web/failures
|
161
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
162
|
+
[1m[35m (3.2ms)[0m rollback transaction
|
163
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
164
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
165
|
+
Completed 500 Internal Server Error in 71ms
|
166
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
168
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
169
|
+
Parameters: {"id"=>"123"}
|
170
|
+
Redirected to http://test.host/resque_web/failures
|
171
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
172
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
173
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
174
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
175
|
+
Parameters: {"id"=>"123"}
|
176
|
+
Redirected to http://test.host/resque_web/failures
|
177
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
178
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
179
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
180
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
181
|
+
Redirected to http://test.host/resque_web/failures
|
182
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
185
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
186
|
+
Redirected to http://test.host/resque_web/failures
|
187
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
188
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
190
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
191
|
+
Parameters: {"queue"=>"myqueue"}
|
192
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
193
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
197
|
+
Connecting to database specified by database.yml
|
198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
199
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
200
|
+
Parameters: {"id"=>"123"}
|
201
|
+
Redirected to http://test.host/resque_web/failures
|
202
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
203
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
204
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
205
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
206
|
+
Redirected to http://test.host/resque_web/failures
|
207
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
208
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
209
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
210
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
211
|
+
ERROR: compiling __home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb__1903923230_70199252279880 RAISED compile error
|
212
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:24: syntax error, unexpected ':'
|
213
|
+
...o "Resque.", root_path, class: "brand" );@output_buffer.safe...
|
214
|
+
^
|
215
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27: syntax error, unexpected kDO_BLOCK, expecting kEND
|
216
|
+
'); tabs.each do |tab_name,path|
|
217
|
+
^
|
218
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27: syntax error, unexpected '|', expecting '='
|
219
|
+
'); tabs.each do |tab_name,path|
|
220
|
+
^
|
221
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:60: syntax error, unexpected kENSURE, expecting $end
|
222
|
+
Function body: def __home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb__1903923230_70199252279880(local_assigns, output_buffer)
|
223
|
+
_old_virtual_path, @virtual_path = @virtual_path, "layouts/resque_web/application";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_concat('<!DOCTYPE html>
|
224
|
+
<html lang="en">
|
225
|
+
<head>
|
226
|
+
<meta charset="utf-8">
|
227
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
228
|
+
<meta name="description" content="">
|
229
|
+
<meta name="viewport" content="width=device-width">
|
230
|
+
<title>Resque.</title>
|
231
|
+
');@output_buffer.append= ( stylesheet_link_tag "resque_web/application", :media => "all" );@output_buffer.safe_concat('
|
232
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( javascript_include_tag "resque_web/application" );@output_buffer.safe_concat('
|
233
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( csrf_meta_tags );@output_buffer.safe_concat('
|
234
|
+
');@output_buffer.safe_concat('</head>
|
235
|
+
<body>
|
236
|
+
|
237
|
+
<div class="navbar navbar-inverse navbar-fixed-top">
|
238
|
+
<div class="navbar-inner">
|
239
|
+
<div class="container">
|
240
|
+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
241
|
+
<span class="icon-bar"></span>
|
242
|
+
<span class="icon-bar"></span>
|
243
|
+
<span class="icon-bar"></span>
|
244
|
+
</a>
|
245
|
+
<img src="/assets/resque_web/lifebuoy.png" alt="" class="logo">
|
246
|
+
');@output_buffer.append= ( link_to "Resque.", root_path, class: "brand" );@output_buffer.safe_concat('
|
247
|
+
');@output_buffer.safe_concat(' <div class="nav-collapse collapse">
|
248
|
+
<ul class="nav">
|
249
|
+
'); tabs.each do |tab_name,path|
|
250
|
+
@output_buffer.safe_concat(' ');@output_buffer.append= ( tab tab_name,path );@output_buffer.safe_concat('
|
251
|
+
'); end
|
252
|
+
@output_buffer.safe_concat(' </ul>
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
</div>
|
256
|
+
</div>
|
257
|
+
|
258
|
+
'); unless subtabs.empty?
|
259
|
+
@output_buffer.safe_concat('<ul class="nav subnav">
|
260
|
+
<div class="container">
|
261
|
+
'); subtabs.each do |tab_name|
|
262
|
+
@output_buffer.safe_concat(' ');@output_buffer.append= ( subtab tab_name );@output_buffer.safe_concat('
|
263
|
+
'); end
|
264
|
+
@output_buffer.safe_concat(' </div>
|
265
|
+
</ul>
|
266
|
+
'); end
|
267
|
+
@output_buffer.safe_concat('
|
268
|
+
<div class="container" id="main">
|
269
|
+
');@output_buffer.append= ( yield );@output_buffer.safe_concat('
|
270
|
+
');@output_buffer.safe_concat('</div>
|
271
|
+
|
272
|
+
<footer id="footer">
|
273
|
+
<div class="container">
|
274
|
+
<p>Powered by <a href="http://github.com/resque/resque">Resque</a> v');@output_buffer.append= (Resque::Version);@output_buffer.safe_concat('</p>
|
275
|
+
<p>Connected to Redis namespace ');@output_buffer.append= ( Resque.redis.namespace );@output_buffer.safe_concat(' on ');@output_buffer.append= (Resque.redis_id);@output_buffer.safe_concat('</p>
|
276
|
+
</div>
|
277
|
+
</footer>
|
278
|
+
|
279
|
+
</body>
|
280
|
+
</html>
|
281
|
+
');@output_buffer.to_s
|
282
|
+
ensure
|
283
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
284
|
+
end
|
285
|
+
|
286
|
+
Backtrace: /home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:60:in `compile'
|
287
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `compile!'
|
288
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `synchronize'
|
289
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
290
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `render'
|
291
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
292
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
293
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
294
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
295
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
296
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
297
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
298
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
299
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
300
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
301
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
302
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
303
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
304
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
305
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
306
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
307
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `render'
|
308
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
309
|
+
/home/tony/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/benchmark.rb:308:in `realtime'
|
310
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
311
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `render'
|
312
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
314
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
315
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
316
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
317
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
318
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
319
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `process_action'
|
320
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:425:in `_run__732523935__process_action__1798483277__callbacks'
|
321
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `send'
|
322
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
323
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
324
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `send'
|
325
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
326
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
327
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
328
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
329
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
330
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
331
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
332
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
333
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
334
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
335
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
336
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
337
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/metal/testing.rb:17:in `process_with_new_base_test'
|
338
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/test_case.rb:475:in `process'
|
339
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/test_case.rb:49:in `process'
|
340
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/actionpack-3.2.13/lib/action_controller/test_case.rb:392:in `get'
|
341
|
+
/home/tony/src/resque_web/test/functional/failures_controller_test.rb:11:in `test_0001_renders the index page'
|
342
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1258:in `run_test'
|
343
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1258:in `run'
|
344
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-spec-rails-tu-shim-1.9.3.4/lib/test/unit/testcase.rb:17:in `run'
|
345
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/testing/setup_and_teardown.rb:36:in `run'
|
346
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:469:in `_run__1198398341__setup__4__callbacks'
|
347
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `send'
|
348
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
349
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
|
350
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `send'
|
351
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
352
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-3.2.13/lib/active_support/testing/setup_and_teardown.rb:35:in `run'
|
353
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:933:in `_run_suite'
|
354
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `map'
|
355
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `_run_suite'
|
356
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:907:in `_run_suites'
|
357
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:907:in `map'
|
358
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:907:in `_run_suites'
|
359
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:877:in `_run_anything'
|
360
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1085:in `run_tests'
|
361
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1072:in `send'
|
362
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1072:in `_run'
|
363
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `each'
|
364
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `_run'
|
365
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:1059:in `run'
|
366
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371/gems/minitest-4.7.5/lib/minitest/unit.rb:795:in `autorun'
|
367
|
+
/home/tony/.rvm/gems/ruby-1.8.7-p371@global/gems/rake-10.1.0/lib/rake/rake_test_loader.rb:21
|
368
|
+
Completed 500 Internal Server Error in 13ms
|
369
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
370
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
371
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
372
|
+
Parameters: {"id"=>"123"}
|
373
|
+
Redirected to http://test.host/resque_web/failures
|
374
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
375
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
376
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
377
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
378
|
+
Parameters: {"id"=>"123"}
|
379
|
+
Redirected to http://test.host/resque_web/failures
|
380
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
381
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
382
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
383
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
384
|
+
Redirected to http://test.host/resque_web/failures
|
385
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
386
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
388
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
389
|
+
Redirected to http://test.host/resque_web/failures
|
390
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
391
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
392
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
393
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
394
|
+
Parameters: {"queue"=>"myqueue"}
|
395
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
396
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
397
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
398
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
399
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
400
|
+
Parameters: {"id"=>"example_queue"}
|
401
|
+
Redirected to http://test.host/resque_web/queues
|
402
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
403
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
404
|
+
Connecting to database specified by database.yml
|
405
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
406
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
407
|
+
Parameters: {"id"=>"123"}
|
408
|
+
Redirected to http://test.host/resque_web/failures
|
409
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
410
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
411
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
412
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
413
|
+
Redirected to http://test.host/resque_web/failures
|
414
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
415
|
+
[1m[35m (4.1ms)[0m rollback transaction
|
416
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
417
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
418
|
+
Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|
419
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
421
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
422
|
+
Parameters: {"id"=>"123"}
|
423
|
+
Redirected to http://test.host/resque_web/failures
|
424
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
425
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
427
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
428
|
+
Parameters: {"id"=>"123"}
|
429
|
+
Redirected to http://test.host/resque_web/failures
|
430
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
431
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
432
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
433
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
434
|
+
Redirected to http://test.host/resque_web/failures
|
435
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
436
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
437
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
438
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
439
|
+
Redirected to http://test.host/resque_web/failures
|
440
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
441
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
443
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
444
|
+
Parameters: {"queue"=>"myqueue"}
|
445
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
446
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
447
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
448
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
449
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
450
|
+
Parameters: {"id"=>"example_queue"}
|
451
|
+
Redirected to http://test.host/resque_web/queues
|
452
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
453
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
454
|
+
Connecting to database specified by database.yml
|
455
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
456
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
457
|
+
Parameters: {"id"=>"123"}
|
458
|
+
Redirected to http://test.host/resque_web/failures
|
459
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
460
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
461
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
462
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
463
|
+
Redirected to http://test.host/resque_web/failures
|
464
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
465
|
+
[1m[35m (4.4ms)[0m rollback transaction
|
466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
467
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
468
|
+
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
|
469
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
471
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
472
|
+
Parameters: {"id"=>"123"}
|
473
|
+
Redirected to http://test.host/resque_web/failures
|
474
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
477
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
478
|
+
Parameters: {"id"=>"123"}
|
479
|
+
Redirected to http://test.host/resque_web/failures
|
480
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
481
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
482
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
483
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
484
|
+
Redirected to http://test.host/resque_web/failures
|
485
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
486
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
488
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
489
|
+
Redirected to http://test.host/resque_web/failures
|
490
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
493
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
494
|
+
Parameters: {"queue"=>"myqueue"}
|
495
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
496
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
497
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
498
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
499
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
500
|
+
Parameters: {"id"=>"example_queue"}
|
501
|
+
Redirected to http://test.host/resque_web/queues
|
502
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
503
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
504
|
+
Connecting to database specified by database.yml
|
505
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
506
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
507
|
+
Parameters: {"id"=>"123"}
|
508
|
+
Redirected to http://test.host/resque_web/failures
|
509
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
510
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
511
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
512
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
513
|
+
Redirected to http://test.host/resque_web/failures
|
514
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
515
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
516
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
517
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
518
|
+
Completed 200 OK in 52ms (Views: 51.5ms | ActiveRecord: 0.0ms)
|
519
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
520
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
521
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
522
|
+
Parameters: {"id"=>"123"}
|
523
|
+
Redirected to http://test.host/resque_web/failures
|
524
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
525
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
527
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
528
|
+
Parameters: {"id"=>"123"}
|
529
|
+
Redirected to http://test.host/resque_web/failures
|
530
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
531
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
532
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
533
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
534
|
+
Redirected to http://test.host/resque_web/failures
|
535
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
536
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
538
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
539
|
+
Redirected to http://test.host/resque_web/failures
|
540
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
541
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
542
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
543
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
544
|
+
Parameters: {"queue"=>"myqueue"}
|
545
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
546
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
549
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
550
|
+
Parameters: {"id"=>"example_queue"}
|
551
|
+
Redirected to http://test.host/resque_web/queues
|
552
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
553
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
554
|
+
Connecting to database specified by database.yml
|
555
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
556
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
557
|
+
Parameters: {"id"=>"123"}
|
558
|
+
Redirected to http://test.host/resque_web/failures
|
559
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
560
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
561
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
562
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
563
|
+
Redirected to http://test.host/resque_web/failures
|
564
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
566
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
567
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
568
|
+
Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.0ms)
|
569
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
570
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
571
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
572
|
+
Parameters: {"id"=>"123"}
|
573
|
+
Redirected to http://test.host/resque_web/failures
|
574
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
577
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
578
|
+
Parameters: {"id"=>"123"}
|
579
|
+
Redirected to http://test.host/resque_web/failures
|
580
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
581
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
583
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
584
|
+
Redirected to http://test.host/resque_web/failures
|
585
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
586
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
587
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
588
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
589
|
+
Redirected to http://test.host/resque_web/failures
|
590
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
591
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
592
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
593
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
594
|
+
Parameters: {"queue"=>"myqueue"}
|
595
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
596
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
597
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
598
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
599
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
600
|
+
Parameters: {"id"=>"example_queue"}
|
601
|
+
Redirected to http://test.host/resque_web/queues
|
602
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
604
|
+
Connecting to database specified by database.yml
|
605
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
606
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
607
|
+
Parameters: {"id"=>"123"}
|
608
|
+
Redirected to http://test.host/resque_web/failures
|
609
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
610
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
611
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
612
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
613
|
+
Redirected to http://test.host/resque_web/failures
|
614
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
615
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
617
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
618
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
619
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
620
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
621
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
622
|
+
Parameters: {"id"=>"123"}
|
623
|
+
Redirected to http://test.host/resque_web/failures
|
624
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
625
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
627
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
628
|
+
Parameters: {"id"=>"123"}
|
629
|
+
Redirected to http://test.host/resque_web/failures
|
630
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
633
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
634
|
+
Redirected to http://test.host/resque_web/failures
|
635
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
636
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
638
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
639
|
+
Redirected to http://test.host/resque_web/failures
|
640
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
643
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
644
|
+
Parameters: {"queue"=>"myqueue"}
|
645
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
646
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
647
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
650
|
+
Connecting to database specified by database.yml
|
651
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
652
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
653
|
+
Parameters: {"id"=>"123"}
|
654
|
+
Redirected to http://test.host/resque_web/failures
|
655
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
656
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
657
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
658
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
659
|
+
Redirected to http://test.host/resque_web/failures
|
660
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
662
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
663
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
664
|
+
Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
|
665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
667
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
668
|
+
Parameters: {"id"=>"123"}
|
669
|
+
Redirected to http://test.host/resque_web/failures
|
670
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
671
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
673
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
674
|
+
Parameters: {"id"=>"123"}
|
675
|
+
Redirected to http://test.host/resque_web/failures
|
676
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
678
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
679
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
680
|
+
Redirected to http://test.host/resque_web/failures
|
681
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
682
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
683
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
684
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
685
|
+
Redirected to http://test.host/resque_web/failures
|
686
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
687
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
688
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
689
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
690
|
+
Parameters: {"queue"=>"myqueue"}
|
691
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
692
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
693
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
694
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
695
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
696
|
+
Parameters: {"id"=>"example_queue"}
|
697
|
+
Redirected to http://test.host/resque_web/queues
|
698
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
699
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
700
|
+
Connecting to database specified by database.yml
|
701
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
702
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
703
|
+
Parameters: {"id"=>"123"}
|
704
|
+
Redirected to http://test.host/resque_web/failures
|
705
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
706
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
707
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
708
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
709
|
+
Redirected to http://test.host/resque_web/failures
|
710
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
711
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
712
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
713
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
714
|
+
Completed 200 OK in 43ms (Views: 42.1ms | ActiveRecord: 0.0ms)
|
715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
717
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
718
|
+
Parameters: {"id"=>"123"}
|
719
|
+
Redirected to http://test.host/resque_web/failures
|
720
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
721
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
722
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
723
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
724
|
+
Parameters: {"id"=>"123"}
|
725
|
+
Redirected to http://test.host/resque_web/failures
|
726
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
727
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
728
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
729
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
730
|
+
Redirected to http://test.host/resque_web/failures
|
731
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
732
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
733
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
734
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
735
|
+
Redirected to http://test.host/resque_web/failures
|
736
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
737
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
739
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
740
|
+
Parameters: {"queue"=>"myqueue"}
|
741
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
742
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
743
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
745
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
746
|
+
Parameters: {"id"=>"example_queue"}
|
747
|
+
Redirected to http://test.host/resque_web/queues
|
748
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
749
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
750
|
+
Connecting to database specified by database.yml
|
751
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
752
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
753
|
+
Parameters: {"id"=>"123"}
|
754
|
+
Redirected to http://test.host/resque_web/failures
|
755
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
756
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
757
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
758
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
759
|
+
Redirected to http://test.host/resque_web/failures
|
760
|
+
Completed 302 Found in 34ms (ActiveRecord: 0.0ms)
|
761
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
763
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
764
|
+
Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
|
765
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
767
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
768
|
+
Parameters: {"id"=>"123"}
|
769
|
+
Redirected to http://test.host/resque_web/failures
|
770
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
771
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
773
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
774
|
+
Parameters: {"id"=>"123"}
|
775
|
+
Redirected to http://test.host/resque_web/failures
|
776
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
777
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
778
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
779
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
780
|
+
Redirected to http://test.host/resque_web/failures
|
781
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
782
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
783
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
784
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
785
|
+
Redirected to http://test.host/resque_web/failures
|
786
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
787
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
788
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
789
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
790
|
+
Parameters: {"queue"=>"myqueue"}
|
791
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
792
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
793
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
794
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
795
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
796
|
+
Parameters: {"id"=>"example_queue"}
|
797
|
+
Redirected to http://test.host/resque_web/queues
|
798
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
799
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
800
|
+
Connecting to database specified by database.yml
|
801
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
802
|
+
Parameters: {"id"=>"123"}
|
803
|
+
Redirected to http://test.host/resque_web/failures
|
804
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
|
805
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
806
|
+
Redirected to http://test.host/resque_web/failures
|
807
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
808
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
809
|
+
Completed 200 OK in 185ms (Views: 182.0ms | ActiveRecord: 0.0ms)
|
810
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
811
|
+
Parameters: {"id"=>"123"}
|
812
|
+
Redirected to http://test.host/resque_web/failures
|
813
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
|
814
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
815
|
+
Parameters: {"id"=>"123"}
|
816
|
+
Redirected to http://test.host/resque_web/failures
|
817
|
+
Completed 302 Found in 22ms (ActiveRecord: 0.0ms)
|
818
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
819
|
+
Redirected to http://test.host/resque_web/failures
|
820
|
+
Completed 302 Found in 27ms (ActiveRecord: 0.0ms)
|
821
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
822
|
+
Redirected to http://test.host/resque_web/failures
|
823
|
+
Completed 302 Found in 30ms (ActiveRecord: 0.0ms)
|
824
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
825
|
+
Parameters: {"queue"=>"myqueue"}
|
826
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
827
|
+
Completed 302 Found in 75ms (ActiveRecord: 0.0ms)
|
828
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
829
|
+
Parameters: {"id"=>"example_queue"}
|
830
|
+
Redirected to http://test.host/resque_web/queues
|
831
|
+
Completed 302 Found in 22ms (ActiveRecord: 0.0ms)
|
832
|
+
Connecting to database specified by database.yml
|
833
|
+
Connecting to database specified by database.yml
|
834
|
+
Connecting to database specified by database.yml
|
835
|
+
Connecting to database specified by database.yml
|
836
|
+
Connecting to database specified by database.yml
|
837
|
+
Connecting to database specified by database.yml
|
838
|
+
Connecting to database specified by database.yml
|
839
|
+
Connecting to database specified by database.yml
|
840
|
+
Connecting to database specified by database.yml
|
841
|
+
Connecting to database specified by database.yml
|
842
|
+
Connecting to database specified by database.yml
|
843
|
+
Connecting to database specified by database.yml
|
844
|
+
Connecting to database specified by database.yml
|
845
|
+
Connecting to database specified by database.yml
|
846
|
+
Connecting to database specified by database.yml
|
847
|
+
Connecting to database specified by database.yml
|
848
|
+
Connecting to database specified by database.yml
|
849
|
+
Connecting to database specified by database.yml
|
850
|
+
Connecting to database specified by database.yml
|
851
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
852
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
853
|
+
Parameters: {"id"=>"123"}
|
854
|
+
Redirected to http://test.host/resque_web/failures
|
855
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
856
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
857
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
858
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
859
|
+
Redirected to http://test.host/resque_web/failures
|
860
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
861
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
862
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
863
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
864
|
+
Completed 200 OK in 73ms (Views: 72.6ms | ActiveRecord: 0.0ms)
|
865
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
867
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
868
|
+
Parameters: {"id"=>"123"}
|
869
|
+
Redirected to http://test.host/resque_web/failures
|
870
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
871
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
873
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
874
|
+
Parameters: {"id"=>"123"}
|
875
|
+
Redirected to http://test.host/resque_web/failures
|
876
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
877
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
878
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
879
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
880
|
+
Redirected to http://test.host/resque_web/failures
|
881
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
882
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
884
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
885
|
+
Redirected to http://test.host/resque_web/failures
|
886
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
887
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
888
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
889
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
890
|
+
Parameters: {"queue"=>"myqueue"}
|
891
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
892
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
893
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
894
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
895
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
896
|
+
Parameters: {"id"=>"example_queue"}
|
897
|
+
Redirected to http://test.host/resque_web/queues
|
898
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
899
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
900
|
+
Connecting to database specified by database.yml
|
901
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
902
|
+
Parameters: {"id"=>"123"}
|
903
|
+
Redirected to http://test.host/resque_web/failures
|
904
|
+
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
|
905
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
906
|
+
Redirected to http://test.host/resque_web/failures
|
907
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
908
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
909
|
+
Completed 200 OK in 167ms (Views: 163.0ms | ActiveRecord: 0.0ms)
|
910
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
911
|
+
Parameters: {"id"=>"123"}
|
912
|
+
Redirected to http://test.host/resque_web/failures
|
913
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
|
914
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
915
|
+
Parameters: {"id"=>"123"}
|
916
|
+
Redirected to http://test.host/resque_web/failures
|
917
|
+
Completed 302 Found in 22ms (ActiveRecord: 0.0ms)
|
918
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
919
|
+
Redirected to http://test.host/resque_web/failures
|
920
|
+
Completed 302 Found in 30ms (ActiveRecord: 0.0ms)
|
921
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
922
|
+
Redirected to http://test.host/resque_web/failures
|
923
|
+
Completed 302 Found in 30ms (ActiveRecord: 0.0ms)
|
924
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
925
|
+
Parameters: {"queue"=>"myqueue"}
|
926
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
927
|
+
Completed 302 Found in 55ms (ActiveRecord: 0.0ms)
|
928
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
929
|
+
Parameters: {"id"=>"example_queue"}
|
930
|
+
Redirected to http://test.host/resque_web/queues
|
931
|
+
Completed 302 Found in 26ms (ActiveRecord: 0.0ms)
|
932
|
+
Connecting to database specified by database.yml
|
933
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
934
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
935
|
+
Parameters: {"id"=>"123"}
|
936
|
+
Redirected to http://test.host/resque_web/failures
|
937
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
938
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
939
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
940
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
941
|
+
Redirected to http://test.host/resque_web/failures
|
942
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
945
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
946
|
+
Completed 200 OK in 82ms (Views: 81.8ms | ActiveRecord: 0.0ms)
|
947
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
949
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
950
|
+
Parameters: {"id"=>"123"}
|
951
|
+
Redirected to http://test.host/resque_web/failures
|
952
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
953
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
954
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
955
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
956
|
+
Parameters: {"id"=>"123"}
|
957
|
+
Redirected to http://test.host/resque_web/failures
|
958
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
959
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
960
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
961
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
962
|
+
Redirected to http://test.host/resque_web/failures
|
963
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
964
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
966
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
967
|
+
Redirected to http://test.host/resque_web/failures
|
968
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
969
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
970
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
971
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
972
|
+
Parameters: {"queue"=>"myqueue"}
|
973
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
974
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
975
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
976
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
977
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
978
|
+
Parameters: {"id"=>"example_queue"}
|
979
|
+
Redirected to http://test.host/resque_web/queues
|
980
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
981
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
982
|
+
Connecting to database specified by database.yml
|
983
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
984
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
985
|
+
Parameters: {"id"=>"123"}
|
986
|
+
Redirected to http://test.host/resque_web/failures
|
987
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
988
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
989
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
990
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
991
|
+
Redirected to http://test.host/resque_web/failures
|
992
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
993
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
994
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
995
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
996
|
+
Completed 200 OK in 122ms (Views: 121.3ms | ActiveRecord: 0.0ms)
|
997
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
998
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
999
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1000
|
+
Parameters: {"id"=>"123"}
|
1001
|
+
Redirected to http://test.host/resque_web/failures
|
1002
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1003
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1005
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1006
|
+
Parameters: {"id"=>"123"}
|
1007
|
+
Redirected to http://test.host/resque_web/failures
|
1008
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1009
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1010
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1011
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1012
|
+
Redirected to http://test.host/resque_web/failures
|
1013
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1014
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1015
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1016
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1017
|
+
Redirected to http://test.host/resque_web/failures
|
1018
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1019
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1021
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1022
|
+
Parameters: {"queue"=>"myqueue"}
|
1023
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1024
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1026
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1027
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1028
|
+
Parameters: {"id"=>"example_queue"}
|
1029
|
+
Redirected to http://test.host/resque_web/queues
|
1030
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1032
|
+
Connecting to database specified by database.yml
|
1033
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1034
|
+
Parameters: {"id"=>"123"}
|
1035
|
+
Redirected to http://test.host/resque_web/failures
|
1036
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
|
1037
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1038
|
+
Redirected to http://test.host/resque_web/failures
|
1039
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
1040
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1041
|
+
Completed 200 OK in 195ms (Views: 191.0ms | ActiveRecord: 0.0ms)
|
1042
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1043
|
+
Parameters: {"id"=>"123"}
|
1044
|
+
Redirected to http://test.host/resque_web/failures
|
1045
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
|
1046
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1047
|
+
Parameters: {"id"=>"123"}
|
1048
|
+
Redirected to http://test.host/resque_web/failures
|
1049
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.0ms)
|
1050
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1051
|
+
Redirected to http://test.host/resque_web/failures
|
1052
|
+
Completed 302 Found in 27ms (ActiveRecord: 0.0ms)
|
1053
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1054
|
+
Redirected to http://test.host/resque_web/failures
|
1055
|
+
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
|
1056
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1057
|
+
Parameters: {"queue"=>"myqueue"}
|
1058
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1059
|
+
Completed 302 Found in 52ms (ActiveRecord: 0.0ms)
|
1060
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1061
|
+
Parameters: {"id"=>"example_queue"}
|
1062
|
+
Redirected to http://test.host/resque_web/queues
|
1063
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
|
1064
|
+
Connecting to database specified by database.yml
|
1065
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1066
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1067
|
+
Parameters: {"id"=>"123"}
|
1068
|
+
Redirected to http://test.host/resque_web/failures
|
1069
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1070
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1072
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1073
|
+
Redirected to http://test.host/resque_web/failures
|
1074
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
1075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1077
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1078
|
+
Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.0ms)
|
1079
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1081
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1082
|
+
Parameters: {"id"=>"123"}
|
1083
|
+
Redirected to http://test.host/resque_web/failures
|
1084
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1085
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1086
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1087
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1088
|
+
Parameters: {"id"=>"123"}
|
1089
|
+
Redirected to http://test.host/resque_web/failures
|
1090
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1093
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1094
|
+
Redirected to http://test.host/resque_web/failures
|
1095
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1096
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1097
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1098
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1099
|
+
Redirected to http://test.host/resque_web/failures
|
1100
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1103
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1104
|
+
Parameters: {"queue"=>"myqueue"}
|
1105
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1106
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1109
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1110
|
+
Parameters: {"id"=>"example_queue"}
|
1111
|
+
Redirected to http://test.host/resque_web/queues
|
1112
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1113
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1114
|
+
Connecting to database specified by database.yml
|
1115
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1116
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1117
|
+
Parameters: {"id"=>"123"}
|
1118
|
+
Redirected to http://test.host/resque_web/failures
|
1119
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1120
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1121
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1122
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1123
|
+
Redirected to http://test.host/resque_web/failures
|
1124
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1127
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1128
|
+
Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
|
1129
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1131
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1132
|
+
Parameters: {"id"=>"123"}
|
1133
|
+
Redirected to http://test.host/resque_web/failures
|
1134
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1137
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1138
|
+
Parameters: {"id"=>"123"}
|
1139
|
+
Redirected to http://test.host/resque_web/failures
|
1140
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1141
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1143
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1144
|
+
Redirected to http://test.host/resque_web/failures
|
1145
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1146
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1147
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1148
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1149
|
+
Redirected to http://test.host/resque_web/failures
|
1150
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1151
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1153
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1154
|
+
Parameters: {"queue"=>"myqueue"}
|
1155
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1156
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1159
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1160
|
+
Parameters: {"id"=>"example_queue"}
|
1161
|
+
Redirected to http://test.host/resque_web/queues
|
1162
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1164
|
+
Connecting to database specified by database.yml
|
1165
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1166
|
+
Parameters: {"id"=>"123"}
|
1167
|
+
Redirected to http://test.host/resque_web/failures
|
1168
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
|
1169
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1170
|
+
Redirected to http://test.host/resque_web/failures
|
1171
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
1172
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1173
|
+
Completed 200 OK in 175ms (Views: 172.0ms | ActiveRecord: 0.0ms)
|
1174
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1175
|
+
Parameters: {"id"=>"123"}
|
1176
|
+
Redirected to http://test.host/resque_web/failures
|
1177
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
1178
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1179
|
+
Parameters: {"id"=>"123"}
|
1180
|
+
Redirected to http://test.host/resque_web/failures
|
1181
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.0ms)
|
1182
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1183
|
+
Redirected to http://test.host/resque_web/failures
|
1184
|
+
Completed 302 Found in 32ms (ActiveRecord: 0.0ms)
|
1185
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1186
|
+
Redirected to http://test.host/resque_web/failures
|
1187
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.0ms)
|
1188
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1189
|
+
Parameters: {"queue"=>"myqueue"}
|
1190
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1191
|
+
Completed 302 Found in 56ms (ActiveRecord: 0.0ms)
|
1192
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1193
|
+
Parameters: {"id"=>"example_queue"}
|
1194
|
+
Redirected to http://test.host/resque_web/queues
|
1195
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
|
1196
|
+
Connecting to database specified by database.yml
|
1197
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1198
|
+
Parameters: {"id"=>"123"}
|
1199
|
+
Redirected to http://test.host/resque_web/failures
|
1200
|
+
Completed 302 Found in 18ms (ActiveRecord: 0.0ms)
|
1201
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1202
|
+
Redirected to http://test.host/resque_web/failures
|
1203
|
+
Completed 302 Found in 23ms (ActiveRecord: 0.0ms)
|
1204
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1205
|
+
Completed 200 OK in 258ms (Views: 256.0ms | ActiveRecord: 0.0ms)
|
1206
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1207
|
+
Parameters: {"id"=>"123"}
|
1208
|
+
Redirected to http://test.host/resque_web/failures
|
1209
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
1210
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1211
|
+
Parameters: {"id"=>"123"}
|
1212
|
+
Redirected to http://test.host/resque_web/failures
|
1213
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
1214
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1215
|
+
Redirected to http://test.host/resque_web/failures
|
1216
|
+
Completed 302 Found in 125ms (ActiveRecord: 0.0ms)
|
1217
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1218
|
+
Redirected to http://test.host/resque_web/failures
|
1219
|
+
Completed 302 Found in 44ms (ActiveRecord: 0.0ms)
|
1220
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1221
|
+
Parameters: {"queue"=>"myqueue"}
|
1222
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1223
|
+
Completed 302 Found in 24ms (ActiveRecord: 0.0ms)
|
1224
|
+
Connecting to database specified by database.yml
|
1225
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1226
|
+
Parameters: {"id"=>"123"}
|
1227
|
+
Redirected to http://test.host/resque_web/failures
|
1228
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
1229
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1230
|
+
Redirected to http://test.host/resque_web/failures
|
1231
|
+
Completed 302 Found in 20ms (ActiveRecord: 0.0ms)
|
1232
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1233
|
+
Completed 200 OK in 666ms (Views: 663.0ms | ActiveRecord: 0.0ms)
|
1234
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1235
|
+
Parameters: {"id"=>"123"}
|
1236
|
+
Redirected to http://test.host/resque_web/failures
|
1237
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
1238
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1239
|
+
Parameters: {"id"=>"123"}
|
1240
|
+
Redirected to http://test.host/resque_web/failures
|
1241
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
|
1242
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1243
|
+
Redirected to http://test.host/resque_web/failures
|
1244
|
+
Completed 302 Found in 124ms (ActiveRecord: 0.0ms)
|
1245
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1246
|
+
Redirected to http://test.host/resque_web/failures
|
1247
|
+
Completed 302 Found in 71ms (ActiveRecord: 0.0ms)
|
1248
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1249
|
+
Parameters: {"queue"=>"myqueue"}
|
1250
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1251
|
+
Completed 302 Found in 29ms (ActiveRecord: 0.0ms)
|
1252
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1253
|
+
Parameters: {"id"=>"example_queue"}
|
1254
|
+
Redirected to http://test.host/resque_web/queues
|
1255
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.0ms)
|
1256
|
+
Connecting to database specified by database.yml
|
1257
|
+
[1m[36m (18.6ms)[0m [1mbegin transaction[0m
|
1258
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1259
|
+
Parameters: {"id"=>"123"}
|
1260
|
+
Redirected to http://test.host/resque_web/failures
|
1261
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1262
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1263
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1264
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1265
|
+
Redirected to http://test.host/resque_web/failures
|
1266
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1267
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1269
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1270
|
+
Completed 500 Internal Server Error in 54ms
|
1271
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1272
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1273
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1274
|
+
Parameters: {"id"=>"123"}
|
1275
|
+
Redirected to http://test.host/resque_web/failures
|
1276
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1277
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1279
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1280
|
+
Parameters: {"id"=>"123"}
|
1281
|
+
Redirected to http://test.host/resque_web/failures
|
1282
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1285
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1286
|
+
Redirected to http://test.host/resque_web/failures
|
1287
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1289
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1290
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1291
|
+
Redirected to http://test.host/resque_web/failures
|
1292
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1294
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1295
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1296
|
+
Parameters: {"queue"=>"myqueue"}
|
1297
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1298
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1299
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1300
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1301
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1302
|
+
Connecting to database specified by database.yml
|
1303
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1304
|
+
Processing by ResqueWeb::FailuresController#destroy as HTML
|
1305
|
+
Parameters: {"id"=>"123"}
|
1306
|
+
Redirected to http://test.host/resque_web/failures
|
1307
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1308
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1309
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1310
|
+
Processing by ResqueWeb::FailuresController#destroy_all as HTML
|
1311
|
+
Redirected to http://test.host/resque_web/failures
|
1312
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1313
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1314
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1315
|
+
Processing by ResqueWeb::FailuresController#index as HTML
|
1316
|
+
Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.0ms)
|
1317
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1318
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1319
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1320
|
+
Parameters: {"id"=>"123"}
|
1321
|
+
Redirected to http://test.host/resque_web/failures
|
1322
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1323
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1325
|
+
Processing by ResqueWeb::FailuresController#retry as HTML
|
1326
|
+
Parameters: {"id"=>"123"}
|
1327
|
+
Redirected to http://test.host/resque_web/failures
|
1328
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1329
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1331
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1332
|
+
Redirected to http://test.host/resque_web/failures
|
1333
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1334
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1336
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1337
|
+
Redirected to http://test.host/resque_web/failures
|
1338
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1339
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1340
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1341
|
+
Processing by ResqueWeb::FailuresController#retry_all as HTML
|
1342
|
+
Parameters: {"queue"=>"myqueue"}
|
1343
|
+
Redirected to http://test.host/resque_web/failures?queue=myqueue
|
1344
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
1345
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1346
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1347
|
+
Processing by ResqueWeb::QueuesController#destroy as HTML
|
1348
|
+
Parameters: {"id"=>"example_queue"}
|
1349
|
+
Redirected to http://test.host/resque_web/queues
|
1350
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
1351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|