resque-web 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +39 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/resque_web/idle.png +0 -0
  5. data/app/assets/images/resque_web/lifebuoy.png +0 -0
  6. data/app/assets/images/resque_web/poll.png +0 -0
  7. data/app/assets/images/resque_web/rails.png +0 -0
  8. data/app/assets/images/resque_web/working.png +0 -0
  9. data/app/assets/javascripts/resque_web/application.js +105 -0
  10. data/app/assets/javascripts/resque_web/bootstrap.js.coffee +4 -0
  11. data/app/assets/javascripts/resque_web/jquery.relative-date.js +47 -0
  12. data/app/assets/stylesheets/resque_web/application.css +13 -0
  13. data/app/assets/stylesheets/resque_web/bootstrap_and_overrides.css +146 -0
  14. data/app/controllers/resque_web/application_controller.rb +15 -0
  15. data/app/controllers/resque_web/failures_controller.rb +62 -0
  16. data/app/controllers/resque_web/overview_controller.rb +7 -0
  17. data/app/controllers/resque_web/queues_controller.rb +12 -0
  18. data/app/controllers/resque_web/stats_controller.rb +17 -0
  19. data/app/controllers/resque_web/workers_controller.rb +18 -0
  20. data/app/controllers/resque_web/working_controller.rb +4 -0
  21. data/app/helpers/resque_web/application_helper.rb +65 -0
  22. data/app/helpers/resque_web/failures_helper.rb +54 -0
  23. data/app/helpers/resque_web/overview_helper.rb +6 -0
  24. data/app/helpers/resque_web/queues_helper.rb +72 -0
  25. data/app/helpers/resque_web/stats_helper.rb +54 -0
  26. data/app/helpers/resque_web/workers_helper.rb +16 -0
  27. data/app/helpers/resque_web/working_helper.rb +19 -0
  28. data/app/views/layouts/resque_web/application.html.erb +58 -0
  29. data/app/views/resque_web/failures/_failed_job.html.erb +53 -0
  30. data/app/views/resque_web/failures/_overview.html.erb +24 -0
  31. data/app/views/resque_web/failures/index.html.erb +33 -0
  32. data/app/views/resque_web/failures/show.html.erb +20 -0
  33. data/app/views/resque_web/overview/show.html.erb +4 -0
  34. data/app/views/resque_web/queues/_queues.html.erb +4 -0
  35. data/app/views/resque_web/queues/_queues_advanced.html.erb +14 -0
  36. data/app/views/resque_web/queues/_queues_basic.html.erb +17 -0
  37. data/app/views/resque_web/queues/index.html.erb +1 -0
  38. data/app/views/resque_web/queues/show.html.erb +26 -0
  39. data/app/views/resque_web/stats/key.html.erb +26 -0
  40. data/app/views/resque_web/stats/keys.html.erb +19 -0
  41. data/app/views/resque_web/stats/redis.html.erb +14 -0
  42. data/app/views/resque_web/stats/resque.html.erb +14 -0
  43. data/app/views/resque_web/workers/index.html.erb +19 -0
  44. data/app/views/resque_web/workers/show.html.erb +38 -0
  45. data/app/views/resque_web/working/_working.html.erb +34 -0
  46. data/app/views/resque_web/working/index.html.erb +1 -0
  47. data/config/initializers/resque_config.rb +3 -0
  48. data/config/routes.rb +26 -0
  49. data/lib/resque_web.rb +4 -0
  50. data/lib/resque_web/engine.rb +8 -0
  51. data/lib/resque_web/version.rb +3 -0
  52. data/test/dummy/Rakefile +6 -0
  53. data/test/dummy/app/assets/javascripts/application.js +13 -0
  54. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  55. data/test/dummy/app/controllers/application_controller.rb +5 -0
  56. data/test/dummy/app/helpers/application_helper.rb +2 -0
  57. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  58. data/test/dummy/bin/bundle +3 -0
  59. data/test/dummy/bin/rails +4 -0
  60. data/test/dummy/bin/rake +4 -0
  61. data/test/dummy/config.ru +4 -0
  62. data/test/dummy/config/application.rb +23 -0
  63. data/test/dummy/config/boot.rb +5 -0
  64. data/test/dummy/config/database.yml +25 -0
  65. data/test/dummy/config/environment.rb +5 -0
  66. data/test/dummy/config/environments/development.rb +29 -0
  67. data/test/dummy/config/environments/production.rb +80 -0
  68. data/test/dummy/config/environments/test.rb +36 -0
  69. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  70. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  71. data/test/dummy/config/initializers/inflections.rb +16 -0
  72. data/test/dummy/config/initializers/mime_types.rb +5 -0
  73. data/test/dummy/config/initializers/secret_token.rb +12 -0
  74. data/test/dummy/config/initializers/session_store.rb +3 -0
  75. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  76. data/test/dummy/config/locales/en.yml +23 -0
  77. data/test/dummy/config/routes.rb +4 -0
  78. data/test/dummy/db/development.sqlite3 +0 -0
  79. data/test/dummy/db/schema.rb +16 -0
  80. data/test/dummy/db/test.sqlite3 +0 -0
  81. data/test/dummy/log/test.log +1351 -0
  82. data/test/dummy/public/404.html +58 -0
  83. data/test/dummy/public/422.html +58 -0
  84. data/test/dummy/public/500.html +57 -0
  85. data/test/dummy/public/favicon.ico +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/02a14af754d35f9d015020c827dc4aad +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/060ba1e3c27350033cb45603b40ec988 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/14882e8f1f7d019b37950944b1053585 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/15d6969ab8e6cc86d7e4ec72a9f29473 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/1cabd5edcfb985bf0e754597f453c2d8 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/1f93ad5cf36f5c7e5bec2b9cecedfe5c +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/2352f28661a506c2c3e144d28bf6a6ca +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/24fe9e2e6b73f666f6f50460b5fe12db +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/2768ee82dea9ebd337e20faa4c08eda4 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/29c7be01674c14314b1321da043c31cd +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/36bf84c5368755f6fbc0c1808cfe7c5d +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/3fde4850b9ad7516ecd360a4c20cae8b +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/47e84a019922f151c4815a3cd738beb6 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/4ff25675e9d69ac5d68dff1d4372f3d1 +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/530c2753f447f8c666f628c5b5d65782 +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/58c7ee7b861e3bd17b1eb3c09a0ccb7e +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/5ae7043abf033ad9c1db3190239296f4 +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/6104f6b3d705c20e2485d2bb6f388f11 +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/67bdb77a662fa6c60ca6ec804ec4e72c +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/6ee0033c04cc130b81becd605709135b +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/706b6b4aca8f925cbbff8a4bf161cd03 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/79973091687030ef9b77e73884ab0c78 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/7bdd86db98ea61e2b45fa7a427617a3c +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/7eab29f4bea09503894bcabf91a971b0 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/7eadf8ac6771f3b20086c935c28b0b95 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/821dd3a673cddb023723b5a4b98fd493 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/885603ea8649d78da8ba6674b31dd289 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/8c86ace126a96b8c90b30f12a136fa81 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/9048f98bf002a866ef7831c71f7124d6 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/99cfb6fcfcd8fc23cc41ccfa12576a38 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/9a13af754490df860af9928bcd00fbd3 +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/9b1a227146b80c04976c0a885c248f82 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/9f48e8c551b5f898ca5667d92067e33d +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/a0113b5b044a3468edab999708723b3d +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/a64f702451323ab621d1836cdb352123 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/aa5c2d7aaabb3df93a734411e42a3bfc +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/acda3fb5202cc9aefb599fd43a058105 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/b02ffe2d07d7ce606d1c3a0656d82bfe +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/b5e993500308f32fff09cd7e0ee89efd +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/bae95ffbad9e9c33e3d4492a4b986c0b +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/baf363f79f6cd9b6a2b3688b77b58aba +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/bc2f95ead37a4ea1f050f6f21a446d7c +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/be47e0dd1cd9914997311db690cf38d7 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/bfc8b2b4f4c3f91fdc360b426adb2d94 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/c0a0dbfbf315a3edf26670c0f5ca7ecb +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/c2607067849ffce81a050a64bdf2e31b +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/c4902d10c0dbd2ef1e2edbb71c13456a +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/c79e7b418287c2b4155c8aecd24be5a7 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/c7f7c001ba2ad5623ead9e6f2d6188e9 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/c81b1182b5c851c35680c7acc88d4812 +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/c981eb8fa4e3e9ae04dbf1b7b8d7f395 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/cb1265ab418e2013b182c8deafcf897e +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/cee0dd733846ecda4ac940c6f033fb28 +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/ceebd7d45f23e34cda37b878e2af5b18 +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/d0cf471bea69c5583f5cb22f924c9d81 +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/d3347e44949d8909be6fb1d64cfb9967 +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/dc0f4af8c3937297fe2fd3f5f4906763 +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/e2bae9a171482111f585b481dc2c04c8 +0 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/e64aa4663498f985d9a5c2c65a0f2401 +0 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/ebf2449fa00d257e175bd62b6a757bd3 +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/eece52c31fc27f6dbb1d3e9dad9c6a67 +0 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/f28711adf8b5584c6956034b86f4cbee +0 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/f375226842bb99acc2a5a8f2396b54d3 +0 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/f83b6fecae01f81acf9c39e710258b98 +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/fa282debca304f7fac3307d091f5ecac +0 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/fab96f7950f4025de51c865e118904a7 +0 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/ff4777d609a0a67e637cc1530d6dc7b2 +0 -0
  215. data/test/dummy/tmp/cache/assets/test/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
  216. data/test/dummy/tmp/cache/assets/test/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
  217. data/test/dummy/tmp/cache/assets/test/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
  218. data/test/dummy/tmp/cache/assets/test/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
  219. data/test/dummy/tmp/cache/assets/test/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
  220. data/test/dummy/tmp/cache/assets/test/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
  221. data/test/dummy/tmp/cache/assets/test/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
  222. data/test/dummy/tmp/cache/assets/test/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
  223. data/test/dummy/tmp/cache/assets/test/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
  224. data/test/dummy/tmp/cache/assets/test/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
  225. data/test/dummy/tmp/cache/assets/test/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
  226. data/test/dummy/tmp/cache/assets/test/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
  227. data/test/dummy/tmp/cache/assets/test/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
  228. data/test/dummy/tmp/cache/assets/test/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
  229. data/test/dummy/tmp/cache/assets/test/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
  230. data/test/dummy/tmp/cache/assets/test/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
  231. data/test/dummy/tmp/cache/assets/test/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
  232. data/test/dummy/tmp/cache/assets/test/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
  233. data/test/dummy/tmp/cache/assets/test/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
  234. data/test/dummy/tmp/cache/assets/test/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
  235. data/test/dummy/tmp/cache/assets/test/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
  236. data/test/dummy/tmp/cache/assets/test/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
  237. data/test/dummy/tmp/cache/assets/test/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
  238. data/test/dummy/tmp/cache/assets/test/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
  239. data/test/dummy/tmp/cache/assets/test/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
  240. data/test/dummy/tmp/cache/assets/test/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
  241. data/test/dummy/tmp/cache/assets/test/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
  242. data/test/dummy/tmp/cache/assets/test/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
  243. data/test/dummy/tmp/cache/assets/test/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
  244. data/test/dummy/tmp/cache/assets/test/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
  245. data/test/dummy/tmp/cache/assets/test/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
  246. data/test/dummy/tmp/cache/assets/test/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
  247. data/test/dummy/tmp/cache/assets/test/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
  248. data/test/dummy/tmp/cache/assets/test/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
  249. data/test/dummy/tmp/cache/assets/test/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
  250. data/test/dummy/tmp/cache/assets/test/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
  251. data/test/dummy/tmp/cache/assets/test/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
  252. data/test/dummy/tmp/cache/assets/test/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
  253. data/test/dummy/tmp/cache/assets/test/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
  254. data/test/dummy/tmp/cache/assets/test/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
  255. data/test/dummy/tmp/cache/assets/test/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
  256. data/test/dummy/tmp/cache/assets/test/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
  257. data/test/dummy/tmp/cache/assets/test/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
  258. data/test/dummy/tmp/cache/assets/test/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
  259. data/test/dummy/tmp/cache/assets/test/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
  260. data/test/dummy/tmp/cache/assets/test/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
  261. data/test/dummy/tmp/cache/assets/test/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
  262. data/test/dummy/tmp/cache/assets/test/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
  263. data/test/dummy/tmp/cache/assets/test/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
  264. data/test/dummy/tmp/cache/assets/test/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
  265. data/test/dummy/tmp/cache/assets/test/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
  266. data/test/dummy/tmp/cache/assets/test/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
  267. data/test/dummy/tmp/cache/assets/test/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
  268. data/test/dummy/tmp/cache/assets/test/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
  269. data/test/dummy/tmp/cache/assets/test/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
  270. data/test/dummy/tmp/cache/assets/test/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
  271. data/test/functional/failures_controller_test.rb +73 -0
  272. data/test/functional/overview_controller_test.rb +7 -0
  273. data/test/functional/queues_controller_test.rb +20 -0
  274. data/test/functional/stats_controller_test.rb +7 -0
  275. data/test/functional/workers_controller_test.rb +7 -0
  276. data/test/functional/working_controller_test.rb +7 -0
  277. data/test/test_helper.rb +23 -0
  278. data/test/unit/helpers/failures_helper_test.rb +4 -0
  279. data/test/unit/helpers/jobs_helper_test.rb +4 -0
  280. data/test/unit/helpers/overview_helper_test.rb +4 -0
  281. data/test/unit/helpers/queues_helper_test.rb +4 -0
  282. data/test/unit/helpers/retry_controller_helper_test.rb +4 -0
  283. data/test/unit/helpers/stats_helper_test.rb +4 -0
  284. data/test/unit/helpers/workers_helper_test.rb +4 -0
  285. data/test/unit/helpers/working_helper_test.rb +4 -0
  286. 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>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -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,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -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,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
@@ -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"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount ResqueWeb::Engine => "/resque_web"
4
+ end
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
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
8
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
13
+  (0.1ms) begin transaction
14
+ Processing by ResqueWeb::FailuresController#index as HTML
15
+ Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
16
+  (0.1ms) rollback transaction
17
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
23
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
29
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
34
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
39
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
45
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
51
+ Connecting to database specified by database.yml
52
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
58
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+ Processing by ResqueWeb::FailuresController#index as HTML
65
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
66
+  (0.1ms) rollback transaction
67
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
73
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
79
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
84
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
89
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
95
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
101
+ Connecting to database specified by database.yml
102
+  (0.6ms) begin transaction
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
+  (0.1ms) rollback transaction
108
+  (0.1ms) begin transaction
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
+  (0.2ms) rollback transaction
113
+  (0.1ms) begin transaction
114
+ Processing by ResqueWeb::FailuresController#index as HTML
115
+ Completed 200 OK in 71ms (Views: 70.1ms | ActiveRecord: 0.0ms)
116
+  (0.1ms) rollback transaction
117
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
123
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
129
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
139
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
151
+ Connecting to database specified by database.yml
152
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
158
+  (0.1ms) begin transaction
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
+  (3.2ms) rollback transaction
163
+  (0.1ms) begin transaction
164
+ Processing by ResqueWeb::FailuresController#index as HTML
165
+ Completed 500 Internal Server Error in 71ms
166
+  (0.1ms) rollback transaction
167
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
173
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
179
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
184
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
189
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
195
+  (0.1ms) begin transaction
196
+  (0.0ms) rollback transaction
197
+ Connecting to database specified by database.yml
198
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
204
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
209
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
370
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
376
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
382
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
387
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
392
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
398
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
404
+ Connecting to database specified by database.yml
405
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
411
+  (0.3ms) begin transaction
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
+  (4.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ Processing by ResqueWeb::FailuresController#index as HTML
418
+ Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
419
+  (0.1ms) rollback transaction
420
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
432
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
437
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
442
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
448
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
454
+ Connecting to database specified by database.yml
455
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
461
+  (0.2ms) begin transaction
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
+  (4.4ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ Processing by ResqueWeb::FailuresController#index as HTML
468
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
469
+  (0.1ms) rollback transaction
470
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
476
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
482
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
487
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
492
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
498
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
504
+ Connecting to database specified by database.yml
505
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
511
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ Processing by ResqueWeb::FailuresController#index as HTML
518
+ Completed 200 OK in 52ms (Views: 51.5ms | ActiveRecord: 0.0ms)
519
+  (0.1ms) rollback transaction
520
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
532
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
537
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
542
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
548
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
554
+ Connecting to database specified by database.yml
555
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
561
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+ Processing by ResqueWeb::FailuresController#index as HTML
568
+ Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.0ms)
569
+  (0.1ms) rollback transaction
570
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
582
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
587
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
592
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
598
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
604
+ Connecting to database specified by database.yml
605
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
611
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ Processing by ResqueWeb::FailuresController#index as HTML
618
+ Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
619
+  (0.1ms) rollback transaction
620
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
626
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
632
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
637
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
642
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
648
+  (0.1ms) begin transaction
649
+  (0.1ms) rollback transaction
650
+ Connecting to database specified by database.yml
651
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
657
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+ Processing by ResqueWeb::FailuresController#index as HTML
664
+ Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
672
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
678
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
683
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
688
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
694
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
700
+ Connecting to database specified by database.yml
701
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
707
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
712
+  (0.1ms) begin transaction
713
+ Processing by ResqueWeb::FailuresController#index as HTML
714
+ Completed 200 OK in 43ms (Views: 42.1ms | ActiveRecord: 0.0ms)
715
+  (0.1ms) rollback transaction
716
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
722
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
728
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
733
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
738
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
744
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
750
+ Connecting to database specified by database.yml
751
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
757
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
762
+  (0.1ms) begin transaction
763
+ Processing by ResqueWeb::FailuresController#index as HTML
764
+ Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
765
+  (0.1ms) rollback transaction
766
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
772
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
778
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
783
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
788
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
794
+  (0.1ms) begin transaction
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
+  (0.1ms) 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
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
857
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+ Processing by ResqueWeb::FailuresController#index as HTML
864
+ Completed 200 OK in 73ms (Views: 72.6ms | ActiveRecord: 0.0ms)
865
+  (0.1ms) rollback transaction
866
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
872
+  (0.1ms) begin transaction
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
+  (0.3ms) rollback transaction
878
+  (0.1ms) begin transaction
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
+  (0.2ms) rollback transaction
883
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
888
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
894
+  (0.1ms) begin transaction
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
+  (0.1ms) 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
+  (0.9ms) begin transaction
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
+  (0.1ms) rollback transaction
939
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
944
+  (0.1ms) begin transaction
945
+ Processing by ResqueWeb::FailuresController#index as HTML
946
+ Completed 200 OK in 82ms (Views: 81.8ms | ActiveRecord: 0.0ms)
947
+  (0.2ms) rollback transaction
948
+  (0.1ms) begin transaction
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
+  (0.2ms) rollback transaction
954
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
960
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
965
+  (0.1ms) begin transaction
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
+  (0.4ms) rollback transaction
970
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
982
+ Connecting to database specified by database.yml
983
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
989
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
994
+  (0.1ms) begin transaction
995
+ Processing by ResqueWeb::FailuresController#index as HTML
996
+ Completed 200 OK in 122ms (Views: 121.3ms | ActiveRecord: 0.0ms)
997
+  (0.1ms) rollback transaction
998
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
1004
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1010
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1015
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1020
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1026
+  (0.1ms) begin transaction
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
+  (0.1ms) 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
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
1071
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1076
+  (0.1ms) begin transaction
1077
+ Processing by ResqueWeb::FailuresController#index as HTML
1078
+ Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.0ms)
1079
+  (0.1ms) rollback transaction
1080
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1086
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
1092
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1097
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1102
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1108
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1114
+ Connecting to database specified by database.yml
1115
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1121
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1126
+  (0.1ms) begin transaction
1127
+ Processing by ResqueWeb::FailuresController#index as HTML
1128
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
1129
+  (0.1ms) rollback transaction
1130
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1136
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1142
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1147
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1152
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1158
+  (0.1ms) begin transaction
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
+  (0.1ms) 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
+  (18.6ms) begin transaction
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
+  (0.1ms) rollback transaction
1263
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1268
+  (0.1ms) begin transaction
1269
+ Processing by ResqueWeb::FailuresController#index as HTML
1270
+ Completed 500 Internal Server Error in 54ms
1271
+  (0.1ms) rollback transaction
1272
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1278
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1284
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1289
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1294
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1300
+  (0.1ms) begin transaction
1301
+  (0.1ms) rollback transaction
1302
+ Connecting to database specified by database.yml
1303
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
1309
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1314
+  (0.2ms) begin transaction
1315
+ Processing by ResqueWeb::FailuresController#index as HTML
1316
+ Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.0ms)
1317
+  (0.1ms) rollback transaction
1318
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1324
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1330
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1335
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1340
+  (0.1ms) begin transaction
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
+  (0.4ms) rollback transaction
1346
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction