cmor_system 0.0.44.pre
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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +34 -0
- data/Rakefile +19 -0
- data/app/assets/config/cmor_system_manifest.js +2 -0
- data/app/assets/javascripts/cmor/system/application.js +13 -0
- data/app/assets/javascripts/cmor/system/application/keep.js +0 -0
- data/app/assets/javascripts/cmor_system.js +1 -0
- data/app/assets/stylesheets/cmor/system/application.css +4 -0
- data/app/assets/stylesheets/cmor/system/application/keep.css +0 -0
- data/app/assets/stylesheets/cmor_system.css +3 -0
- data/app/controllers/cmor/system/active_storage/attachments_controller.rb +29 -0
- data/app/controllers/cmor/system/active_storage/blobs_controller.rb +29 -0
- data/app/controllers/cmor/system/changelogs_controller.rb +21 -0
- data/app/controllers/cmor/system/delayed_backend_active_record_jobs_controller.rb +19 -0
- data/app/controllers/cmor/system/home_controller.rb +6 -0
- data/app/models/cmor/system/changelog.rb +161 -0
- data/app/views/cmor/system/active_storage/attachments/_index_table.html.haml +7 -0
- data/app/views/cmor/system/active_storage/blobs/_index_table.html.haml +15 -0
- data/app/views/cmor/system/changelogs/_after_show_table.html.haml +1 -0
- data/app/views/cmor/system/changelogs/_index_table.html.haml +9 -0
- data/app/views/cmor/system/changelogs/_show_table.html.haml +7 -0
- data/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml +16 -0
- data/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml +12 -0
- data/config/initializers/assets.rb +2 -0
- data/config/initializers/cmor.rb +3 -0
- data/config/locales/de.yml +59 -0
- data/config/locales/en.yml +48 -0
- data/config/routes.rb +10 -0
- data/lib/cmor/system.rb +10 -0
- data/lib/cmor/system/configuration.rb +25 -0
- data/lib/cmor/system/engine.rb +7 -0
- data/lib/cmor/system/version.rb +7 -0
- data/lib/cmor_system.rb +4 -0
- data/lib/generators/cmor/system/install/install_generator.rb +30 -0
- data/lib/generators/cmor/system/install/templates/initializer.rb +41 -0
- data/lib/generators/cmor/system/install/templates/routes.source +4 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/controllers/backend_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/models/post.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/delayed_job +5 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +36 -0
- data/spec/dummy/bin/update +31 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +34 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +61 -0
- data/spec/dummy/config/environments/production.rb +94 -0
- data/spec/dummy/config/environments/test.rb +46 -0
- data/spec/dummy/config/initializers/administador.rb +24 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +14 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cmor_core_backend.rb +12 -0
- data/spec/dummy/config/initializers/cmor_system.rb +41 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/i18n.rb +2 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/route_translator.rb +3 -0
- data/spec/dummy/config/initializers/simple_form.rb +176 -0
- data/spec/dummy/config/initializers/simple_form_bootstrap.rb +440 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/locales/simple_form.en.yml +31 -0
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +11 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20200128171009_create_delayed_jobs.rb +22 -0
- data/spec/dummy/db/migrate/20200128171022_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20200128171034_create_posts.rb +9 -0
- data/spec/dummy/db/schema.rb +57 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/haml/scaffold/_form.html.haml +12 -0
- data/spec/dummy/log/development.log +128 -0
- data/spec/dummy/log/test.log +2225 -0
- data/spec/dummy/package.json +5 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/spec/factories/posts.rb +5 -0
- data/spec/dummy/spec/models/post_spec.rb +5 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5_i5Cu4DVWB6u5AzETTDl8QjlOOgMfrD6OzZZ0mlOQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-6/-6dxSYe9e36D0EVILIP9LBEHr0lk2FPQkUQNs4SoxIw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-c/-cuKPPwHZkwFd6IgxQE8O3NIcz1BxcEtj8_Li4tO65A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-m/-mQa7zqqtbdB7FYvF0_wmlh9kjiEKYO72Kqb29DyAVA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-q/-qT2H9URu2uQFbXrHjQZ1UWIy1JE3ysLaHOAuk-CFrU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-v/-vqwyPj59JOSyS3Sk4xKZRkClOMbCiGw_38cBSeG68k.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/02/02DabTMmAuZUB9q0bwGJUXBvgyXeYOm4vMjhg1YWMpY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/02/02Ze8SHycSwbMZP9lyIsj5GESCYii_2CH4otWIRV7Tw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/04/04dUee9qaqng_NvyuuvCTIuenXkMc-xyNIj6ei_HIBQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0C/0Crqhz_JZcPbgegzAwSurAtQASJ3lZ5Pb86vMaSQsrA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0K/0KvSE3yWzJBqg9znmhBA_nxzkeOxLyg_g_2K5VcolEg.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0P/0PTGQhqiTGEzvLIpTyKmo9LDifeDEVlc15GlCVV3Va0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0V/0VFVJ-JhrAzykBRXIU470to_I4dPSdwlkqqk0Wdu9aw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1R/1RHriwhRiLExhw_VQRJFTuc3lBCUzJSygGsaawFbldQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1T/1TIed_wRBc9-maFhym4h3LQy9nEhbVexrAH3pr_fiW8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1Y/1Y6UM8haLzxwWDFiyIVjZCR8pPVtLupffkOLuj04P_4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1l/1lH1cKFCkBhJPILUECkUqVAqA2Kv1punSFJJpCUAAds.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1y/1yiB5d4-uZNpUULiOIFVrk_B8miWAr7_Q1dG1erFVu8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/23/23hSbI4TkxHE3c92vHvqj1G71WzFn6RMHTvoboYASRk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/29/29rUZJRduNBoVpGHPYXKlYhbURJaxXCe4wWbadLbDag.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2P/2PHPPPMFi42XmUrvNieCmjNcgWroCXeTanmnQ-vT62g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2a/2a4UxJj5d3OF_6_R3QTT4Szqu_OB1NWJ9pn3bGAqJsk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2b/2bx1L2-xt8rtV5Dg7tPula-e21bS_uE2oUusCkeLubc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2h/2hAQyAN1-WEBSeywTp8gcwsl5OGy4w6AexGslYneQ9w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2w/2wXTGFrI9NrZd7AiowbDEc2TpfjATaxz3xZJs3NsF_w.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2y/2yVloV81WMxl8ebvYzrPFoVPOotvJvZvvYFputC8Yqs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/31/31cCXY8R-FnCCqJAD6hoe8VKPhWxNgGzCJKsRC45ymw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3O/3OpspJoEdog7RTfShUwv-qDtfHAUFZkmc7TQqlvKChk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3s/3sgq41WxlfXUiNt3O_wUC4NYr9KeP-zfYN2f1Igm7Po.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3u/3uLIfdfI18Y3iE7LCMW1gzieVf9ext_nyINnWTKzF28.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3u/3udCZ2gOuMWi6dbr-ZmMaA2cSgobuQwXzVa9p2HEx6o.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/48/48OU-puLjWtSeVmtcnX24CoUtBBbKJLf9nC3zB0T7u0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4J/4JX7Guiz_225C5rtNnQ6UuwtVr9qc2sZGD-B1RL3Ql8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4K/4Kao-IxQD15Wswhz66QRjODa424WitShVn-OOZ8Zll8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4K/4KzsstwBPR7ApHGkoqSVftp-Cye3_ES6I9Q_vzJ7SJo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5K/5Kh5RevuIQpUVSDW-EilhDsPlutdytHspzHRGTC9IDU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5Y/5Yc7L6NFfY9iVJotsutQije5ztn1zyPwiAQugnuZTM0.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5u/5u1ELCUbEc7CF4FUsghC2d0Q_asRAc3V76aKdkYN1vs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-3s_8cjOysSrylQXqa9RQAzi4hX54xtE_znNLDQa10.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/64/64WfrNuqkHsbPnNt6yIGke1q7OBs7K7HPTetoiQuot0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6J/6JPJuvpZ59F-V0rTu8QMpyKP0ULh8itm455QsV4MhH0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6K/6Kfk5m9bAGq0gRDTJ0Kclh-5DdQ_NcYEps0wD6tSChw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6S/6SFuZlU_k5nLcXkznz858TLFtin4nStiV57c2j44fwk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6S/6SQxDDkUlIM30LpReGj_1UgdXJMyZBddyceqm6eng_o.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6X/6XZ9aeVA69Nw9ZF8dz9aORRKHWLrU6HDymTu0S_-zCQ.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6X/6XlU_7qCWJ8Z0S6wGcO26gKhEj2Tjh6FZqs3I0MrrUw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6g/6g6ojv_uQnOA-4q8WWr_-zHJ2b1sN77Hy2BZ0g_Gapc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7Q/7QCb_ld5iv9ET05-M8vSUDLc3to1KNcMzhMMl8Z6tUs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7f/7fR29uVaSCOat8TioCpwdTmWe31Zy9B_8mveHVTupts.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7n/7nW7ygcJhfx-HXDib7vV7mXBRzxm_R84hGUKQcJngjM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qc-at4HoP97tgi7GiVj3uOeE-fVo5RA4OL6z5enQ-I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8S/8SyJOAN9ggJTpzv1o4xptaFo7ML5oPVteO8y_ktIr80.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8q/8qugTVvjVCLSBEy9hXYs5ny7jzv55P8hi2SJYoOrDuc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9-/9-CubmYcjo4tgi05cuORyOE_tUGjmkL-W-6675sL6-4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/96/96AKMQyOhgiRFPEftvCdr1QPeolPwnluN4iOduAeRI0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9N/9N9_9TWwcxG4H1WjAvkxn_l02Hvc-eyhxMvrAklpf-0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9Q/9Q8nyMrX6QNvFppy2RQTlT3kGuSWrqTm5bE9bjCasYE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9l/9lff_vi5jwF4Xw6fzf4_YJ7j1MvVAVCxXrjlwyeO2-o.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9m/9mH683ReMxS1s1La-OZOUk6XgEeCyjzpBNPv2VD3TjQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A3/A3DwjfvhCLSUj6BizZ4XZu4kLpVFcOdR7WqrI7zivgg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A3/A3r1s9ui6crk_F8tv1jihFHQILko-7yQMvAfbrpQ370.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A4/A4RdQDS3Fr5sOVjp_c0u-zNsJMnXWEifE8YyTd2Zkug.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AM/AMmCzd0FPCP7ucqJXDVzTxISKuicH3nbG9zmnk0B8XI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AS/AS25IquXQqrcT2uYB7M1YVr_FVc7zrmKs8Ned8OuuIQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AU/AUdQ_orcPYtVO_phLT0dCsS1fcvZm8BkrnaGYNgWF7Y.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ab/Ab11GDY_QKY0fvSS8xRb1pZcPeAxL3C3FyBZw0XusB8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ag/AgztiLKToosHoODuhp9haw-puyrSA40GH8__rSSAsZE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ar/Aredar3r6yXFxQOrrapXB81CBRWR596Zv-v1l_ZUHG8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/At/AtbpLF65IYMctIApvHZSYNppMU72buuO8Ua9D5bMPRk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ax/AxP5nvn4nM3_bBtoaeHKZtVZQSs1lo0lXmwVzDAyR44.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B3Gbbl3JRUH98pv8lS29fHiyhx2RE3VwAn5AWssNqxQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BL/BLDi2348Czk9CHuW5axnWHxW0rzYV_DcggviOB50KOY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BV/BVNwC4HIOJpZc_OqORY-G1RZbuhapHpQkZElIYSQFaI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bi/BiN2Ha5hUOMTb50aSS144igMPB701e-AeXzEiuq4ibY.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bu/Bu9Y96-ku0Ek5qGzDaPjJ0mFIw81Uk01jRAZGnnBb68.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CI/CIMa7_5ZkYQ9L5JZ4oVtmYr6pvGgm6lVbfsGZmx0-5U.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CS/CSHd7CLupX52IYR78ou_LD84gPfpTRxFlZx6ilRUYFI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C_/C_UFZBwAyeOC1Kg2KkKxvUSuN3iGETzBXx-iWxV3jRo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cc/CcF40aGSsUTK5V5Ib_PlE-Puo-ItdYypzD4QedOq1F8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ck/Ckc20byuPOUrT0ES3Oldd5GC2FusE8-R_AuMMiE_VNs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D8/D8z79fqDZvJYYVt5JDzVKeXmbFLFDQmo1yT34YuCg_M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DW/DWwZ_AmLApnE0wo9pVtt0rLNbT1he1pMsTMvG4jlSoI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Db/Db9vbRcPbG0Gs2jAdsj6aXS4cNYX3RiO-mQjOlA5uEw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Db/DbCcoOIUA3VaRV9eVcyl6kXaieYt-deGqJvJ1Ii-JVY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dd/DdjmUhuPW7EX_IftXXE5N9KUoBTVv2B-7cQYVbqXAUI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dp/Dpc8SQj4bmOKokkdkZ7zsoFHJg_fiH54Bkw-Hy3D6F0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E4/E4a5H2939WmaPzdEBuWeyf1JMN9MSvTeCtM7g-GPhQs.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJ3-kITbfjpL3lOwiKqfBvvkHom6-cq03EdOoY-0KQ0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJ9Doqnr3lMq0UkOEBCPTSxEOcmoT6NvVnJF7rE8XwQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJvWzkIygc8TCRwWL_o59Ph6f_4W7KSA2pZrNO6PFTo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Es/EszSDXt82n84XMTMEIBC_LBZCqiRigZg_DTXoBNVx8g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F4/F4e_qu4WlKrexY5axbziYLQsQpM6Cqw2xuUU-t1HQpk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNadC17Fjn31cNub608HO79L8TxoeE9gk1o_nTEZ4Oc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNyjcBZA6hdlZbpnzV0BR2OOFc65g4_q2mRH2BeXnbI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FQ/FQPLdti9vN-JiXx74Jh0DAJIcvCOKzhrxAnUj79HPmc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fg/FgyWYtvb6SjPjFfphgVNw-x35STu1R0XjMpe9XWKwIw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fn/FnI5FklwyFpEwbO090f2cNElxeN8PIGQ5OiqUUMYEOU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fy/FyVlXLnlaNMWRX5grjh0B42s00q-j01bmvuLbJqnGs4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/G4/G4i1rk0ZuIkhNeJ9mqG_xsofohoTMuIys6vJqPcCpnE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/GD/GDn4ZVU4zGHot9CXAIKRpAMBG5lnykcp8v36w3uoLrE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gf/Gfy6KzAW-SIViIck1N0aJ7T6G7xWHJkxWQdap_kXRtg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gm/GmkGW_aKzTsiHd7JndhKDLVrMtXFUkgKEnbfE_VWRq4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gr/GrOIoAD0J7i1nfhUHyQOnFHosQS9MobWHbrk8pKaRDw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gt/Gt2Rt2JcJ_PIfiAJ8J-IOAMvI8S_znAkvc7RPYfkNaw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IF/IFPLTnmNTu94H0MYgMV1nLnPCyrxcuzgR7Q3lZF-qn8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IO/IOpwwMC49uuigpYQLioYRxnSE1GAc5BLxwLwuP4DO_I.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I_/I_CkS0KkEgMvoRZsDtDhTAPFwqtMdFClBJRfLHxHzTI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/If/IfjuVHwDs3o1_4wuUYL8Q6C4G57uRvoah_vChE0pUco.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ix/Ix3v63lfcA-5lZo39oABaUENSvGOCTbejnRvO3l-Gbs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JF/JF0mWI4aUOZTtjNOusonuDdE1_fPrZy6so_hH7cQ6ak.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ji/JiIb0aCoV_ddk9jRMSRoPr67SzAtk1THg76UjU7EbjM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jl/JlSmoe3olMGPiPWzkJFX1_xH2-EppNc1WuJJBiPG4eU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K0/K05IjH6-qmpyWYl5MEN-kbdRpXhu-FOv6WNRqFoDsZs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K5/K5pQS47JukM9TJrOPskmFKWMCS4vkK5m-aCi4mEbMYM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KBVIax4tuHVrfaZaaZU2tZprPbghtDLm1V7ce59tDz4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KE/KEj_SDYbV_vVLxmOHuu2FYmu7y866ZnvjMhBHbGLvFs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KK/KKCAgUk6-1aiTnylw_Gr-hAOC0-smzasGdttWdcIF9w.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K_/K_6tsdcGKf50KtE8WwcJ9nnU4nBeniufkUNP67eFUJY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Kg/KgeauJT_kD8huHBMgxDyU0vtTB3R9_wQ3bNT4jDHaWM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ko/Ko0JYNtgI8OPDBxvT3zpCEAbF8RE5yoI4Co9IhQVYHY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LX/LXH86YOK0hMeLIdYeFyeeJs1dTbB-fkNtZcI7UdwXGw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lh/LhwDHh1f52RgY6ijoM2MA-UwC2-MqVEbXe4-sR5kftM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lj/Ljf_6cXAWRrbqPCOSKlSeemiKx7eTetiT2uLB0peRlU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lu/LuDp4Zgge37cH6dWN0ArAH8k-MstZzNguuN3UE5p4gk.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ly/LyZi_6FUEuNOJDZBTgn9mRKm7ryjds9GEZxvkBplYXA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M-/M-Xc6A57vBhv9iYfX1MALqrKnuOzVwz9kH-YdUuUscw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MG/MGb4E7Cemjzxbwiqr9vnAnto597cwiqGSc4QwE8sYFE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MH/MHHOPPnBf3FMGdJWzyfarWOJK4hLHjvTUSrN-ObmX0M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MJ/MJpMSxwTPlgXPK2QAuNgeFK5HpN3PXY1lPG14HXkSx4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mm/Mmq5owhyzPOQJPe4e_-9PG-ZpnvZCtnjJewd5U5T20k.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mn/MnxOH2wTr2ql_LY_cyaQeqdhMRWLBwoFq_sngaE-CEg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/N2/N20O8XTXqnylUGjGTjyccg-oSdyTn8pfvvvohG09CX0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NN/NNk6NE3QDLsYPDxmyKRykzF62tNRyhhSUAurZtVKdoQ.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/O5/O5L6y8ok-vkhtGGRn3z7h_pgZ8yivzPnYSjgS_E3Kq4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ON/ON7MDlILe7OWn1krxW8g-KcNKdHJpqTTCVU9uIY3Pm0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTBjtEm36amBFx9-OAmOF3EWnr2-YQiZd6IUdKEgHko.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ov/OvN-i6iA8MvqPyfz90O-eNsSEk6ZZTXz1NrfnZZiLsA.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/P5/P5WvV2bMYda_P4gHeDDN1gy4w5uGocBYeno26tH90Ss.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PB/PBd2daBdHfGbnIFTqvR3pz4IghMbymzBEj3enx5ONbQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PI/PIM4Cq31T2-Vv6vbvXFkNtHJrfrIhYlnGJQ7iyTT3pQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PJ/PJMEITmfVzw-Y0-0cyTgxKIyare8MWbInTyLBHb3YFw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PL/PLfEo435QLMF_0dbruNRpZGiQE7mRK70b8whfIJZnRc.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PL/PLjoveEaKIdQjDN83NknY7PDhw4jc1AAm2X6TG80mhM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PO/POmj8dlVlzA34lZmYKCp9s37zbxnH5phfRZ2ZImo1ZM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PY/PY8MlEPGHFn5VBci09tK7yPjxtUiLLZe7_MMXff2oW8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ph/Phha7I9IMAXISDBC4moxCLf8WbZ04Sm91y-ZWX8-R6o.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pp/PpyxEBP0WfIGl1x3lVDbNowf8hic0X8pybCIiPMHRlY.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QF/QFn9vUraAba0IZE2UOZp2nYbwG8bADFaifsp_BGnATE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qg/QglMmarCF4QnVJ7ZoCAPwtAa4GiqS_cNOA2Zir60Yc4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qk/QkYUu9GUrVh4HOsZ9Y44Ia95eGnJRDrRlxwIgi7BHzU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qp/QpalW_Kul_wfgZh1VSM7ItMon8MGv_fKzSVIN5dreLo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RL/RLNiYb5vOkKRiqrrUH028pwxIZHSc3XVqu3GkZz_WGM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RO/ROYpxeB1C6xiJMdHK07FfuDIfQ3yunnqtEt9lkV7E8E.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rb/RbzlGbmGJhvSiPr3l-Fu5Oth6tLKSmZk7AX8c5hqsvg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rq/RqHO9XMKK56g4Zn0qie4FNr_SVfkh8x-xg1BuAhRyms.cache +6 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ru/RukwwJ7Lmi0dwdc9ZNkgrC6pNXzXq651EPDxipa78aU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S5/S5IGTmTHG6HnlgQMrfczysncJUE5IP8kGRM0M8UqxPc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZL0ywvWKfWzuQulJe_aONBkF-dQkfuXUVVWxWnJbJo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZmy4G3WyzboCFNWFqKdlOyNf4msnegqNOnO7bvfuGM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S_/S_ZgDTMxLmuGZETorAqLOlGwUjrSS3guo4rMhj6YnKw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Si/SiRE3bqYCET97MJkwnglKhKk8lcZzNzL3UWNf6R5urs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sj/SjEcKZ6vuf6ylfkUa--akQA0ahhw2_zGABY1t2tH5_g.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sj/Sjmh2uI5o-38CODETx5moVzPy2MXUDSJbbHoJCOwPqA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sl/SltCbntAE684RbklB2Tk4vlE6kVdmCiZhN7ijDIOh4s.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Su/SuBuermsrsKuLY0UBpIY_vTAC1z6tBqkFL0KZElb3T4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Su/SuVHVGuM2KPNMMTae21_lbLrYsVHdJgSryrA2OLlsQk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/T-/T-vRWL6z1aVV7DWboJ8YZyH1Gf2j-KF3l3wAY4LaIgo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TO/TOUKkWugjfwjkmu4n9e1CM70iSq9Cx4kI4-AuU3V_yE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TV/TVsS3E15vDIjFHXmNbV2yXwTsD4ar-7dTFPxrXhe9qs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Te/TeGfSQhoa2ACOYPhMD6HndJtj46ln3A0yPhts2IyilQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tg/TgramDhiGab63vQAtO09X8vvDog9pmImRV9vorroz7w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/U1/U1GxO7eSJhH2rO6oUFuOrXMGevStpfGdWfoklikSnvM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UJ/UJQzzpDcUu0_i8VFjWKSKnszk-FZXBidk4_MxQBY_UM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UT/UT8n0uUnaNi60DrOHMM0jKefbf48xzuBj0s8sjSRCRs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ua/UaJ4LkopmA4HN6g_OtKo3KTFNm_rpV1aVGHg1wmSHgI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ua/Uaj8rRUC-VagGWiKql1eX4TFWw9ErNBvd3OVIIWEN_M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ub/UbhUGqS4h6eCH56zcc8TSl3HH3E-sd3DGstMa0bWCLk.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhSANpl7ayCugMDV64lEMetWxB-RHF52ppsC6quFPyw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhdgpKGJKqnjccQRM6NFfQ2DspAJfyy8RRp_5-MLP34.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhytyGrpiFsa7ukPXc-LSg13rH7IS8aUpNROS7vpQtc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uk/UkLZU8MBWP20LyOpTuNsGrRdCTcoBtE_6VUPKfZXA2A.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V9/V99EfSaCz3piQ9qb9vICLZ-gmlxEeqXIkLqm-bFZxcM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W7/W7qcMC4wDGqabV-9yK-RHbNSJ_afr0JtbAEJKUCpWzM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WC/WC5mOU3VtqHMi_9PmnqNsBc1s3kNuw3S3u6NkV5YIcA.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WJ/WJVYXO_fhsF6jkyuCj7a4unVLTePIcWnLlXUwoXPGtQ.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WR/WRqx9-ZAtHd88Kbm66hMV2C7F4SOeZGgf0Jb7mZ_bkM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wh/WhiTlo_kRkgCyzSTZkfMZu3oBnMOivSHdg9qRi9qLAc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wk/WkhyG7oAHtO_eC2JiEWsMKeoeUtRAgrh1I6WEoCGMko.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wn/WnIdutzWyoWrukYleTKHY7TI4YmQ869iyEPv2y2F01w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wr/Wri4UoHrvzG0kRiXSvB4bIYW_SzDP9X4x3Qy5K-ElpY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsvUQ6g5vi4-7Y0DzsF6lKrS5GyQXfOHmCbSfAYkzic.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XD/XDUlhz2uMGkXU1PeD6SYJxb3Tbl8FoNdr6bqJx6xAxo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XG/XGA6iVh9IinZZjLyCzO1RomvFDN-dWSUquFJ_FObTIU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xo/XokQGPJOtxrIzCBSKpUdJnJiZ3BYxYjBY6dwo1C84CE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xp/XpshzEB1CzWK6q8-_Fw27qzGD2zgpZRhe9vFc9du8mY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xq/XqkLuENMTUW2nzcPyJZyEuy_5F8K-ICotABR7RArwvA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xz/XzDOdqI_qdQ7aVkbMzL2sw2GY6RM2dxMXfM8-pcaFHo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y0/Y0XhFSd0l-AvJDATrWAz0qCBoqAjEXEs2WrQPF2oaao.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YM/YMSkijO4OqF-va090LsCh_f3AaiBWZcHyXM4hqlhuhU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YW/YWei97rAlk5As02FKgRsUDayGivKC-2aFgaSwcgXwHw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/Yl-SzqjaIwyPYnb8cnGfD8Ej3qPO5YJLflMZju084Jg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/YlukUsyujAODdc0yapT61cXvvVIQ_M9YWUgpTpQTa_Y.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yp/YpR5ql0CmWPYb7RdjDLYp-HOisXAKu4I9KvolOytlhM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z9/Z9YD3kJSdsORk_qhzt8yEic3wmIYtbll3IWWxzrPq_c.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZP/ZPbS7YvaVoiPofGU7eyoINUxgyZJyBq2W4jmJXDs0g8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Za/ZaTA8ls3ubsRQfoArGvZQPNyAW_IurIDdFHQwvN3RzE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ze/ZeVwDGv8IU-XZB2kgh3tW3R5guwv8wqY-nHyVy4zijw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvJ3ssS60YvVm7uvqQ6M9yzxpH91VGwxdrgMiqzwt44.cache +4 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8QB2t_-fqGijyjFZrXJYq12HVuuOlESUQrkDi5vFHg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_E/_E0g95qavolysFM8rvrGjt0V6XJlAPm4GKFjL1hdaiU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_N/_NF1y7yWsAj3MqCUNImSZPYOTGOOfwHVR8CBDXEz2n8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_T/_TSnukkoKWW8VtUMnQD_ABk-Hmg5lf6Zrztp_KnOb6c.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_V/_VvNdAqkk_M3hIqqQyldmE7uWXCqP1vYTesQKU95tYc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_j/_jWc_Bdt59CzVcmRnExHGBjAdWgGP4g9mvQFewFlwT4.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_n/_ntSSL5pBuDCIAMwyIjmAfkrmx_pwfN_pianqvnNsRw.cache +35 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_o/_oUFNl23NJwwOszoVmYKvsgbk13q7i4lEI-67r2t9iE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a6/a6c2fElJyz52FG1bzR1lcV7uaAsWFsR7vgCx-9C3Auk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a9/a9AbcO7bHCvM_zzrZ7GY22eAdaWYE3P7D7NHlc_bqdQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aW/aWQeAPz6dTOyZXx839NK0cxOoRNwiI7O-z_0lz2dcLE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aa/aaAUmeyp0O3BI5DPQlzx7JBYOCNa_MmOKyjvYm8ygwA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/af/afH0NERXsGZbhGZbnzZ2RSHPL0akjVVEvot7K42YMX0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ao/aoXyhfIRh2a02aX-5jhrBS1laWFe6m0N3wnqdicUcp8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/az/azPz0MjaMrptwfd2WrANe0mC8dv4x54NUTZ_RHwB2Fs.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/b3/b3QTpEFTJ_PZU61euiKJDosQb3B7Hjoy-81QKxxc_UE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bA/bAr5Ll6uV1l3NlTjm_XrT6sEzCG79rhNs3fFnEJeLc0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bB/bBiBLvniLSn4IqAL2WHHgVa2R1HEddBiDIOlScha2DE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bDGI5ILX8WGxUO1ypLb8i4xJjgOSD9E3xnfe81K2dL0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bG/bGfLOnvumDGZXfcnUpD9eblIGg8zESjbxlYDOUbvvr8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bJ/bJjoQd7Q5h6ySZ59lUMbm1ebESimCxaxByrEE2Oi5VI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTVLI9FBW0mTALaS7SqXXzzoaeYjNaULZ0k3BJg3tqU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTtjJ8INAyvnSIMspWhd0Q5wpgwQes-LjEFz2_bTlBk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bW/bWVobaniHKYgaOqmGsY-3lWkoYfettvyRvN-al6k8mw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bX/bX8dsQ7NETR4UjFmKSl4Bgcj__stmPD_Q_ZyVNyvS5g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/biqjJ3cP_d-VEB9qaAix6-DE104ZFZrowfSkkHfm1GM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bq/bqX4j_zZbeV8LgllrusWMRjlCAKnQopwGmBpRlR0RVo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cD/cDhceJCud3ytmx4KAapGNY9E4GGIxFLHRXUF4gDYxlY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cU/cUL6wF4KDBndJmV_lWkqpVPIHxEQaRTZJ8BvwDopYE4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cd/cdvdtHJSzK--vX3Iey52cBkjKGcR8fcMJN612HR9Bxo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cj/cjK2Q1o5BnizOZSx4IphUNmw7vghh9G75FppXFPLUqw.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cs/csUWBJUbJc2qsWWiGviL0r3BqffL9uG02-9EP8AfWtE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cz/czrZ-Wp0Xjs7aITUJZldPMl6eAnccxfOEUrIwjoOsOo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d2/d2WhBXZNPOYmKsTzwvFPudVH0yRvHBUVdrEgkvKrhZY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dI/dIUxL2dHOPknD8i1L7K6jWfRuEK3VDnY39O09KoyNdA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dO/dOZc58tPCSl81XiqbwrLeA6UBDexijjQ0TuaVeYlA-k.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dR/dRUr3fS0gOk6MifE73gXaEVw0R0HQQEn-ssDRYD4pO0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/db/db8h3O1MzvfSjVlvsmhBQjbeqmUUYD_NL866tTGSBjs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/de/deP2QzNEGXKnCefB-g1zM2taDyU3CjzDjcWF2mLkG08.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dp/dpYfWRNwhMBvM4r0LC7pRLwCmYyDyXmo-W16YLyUkEY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/du/duSlAnriPjgsPvZtgBZTgQAZg_U5CVYiA6oNHajH_Co.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dz/dzDxB08NnHQ4oCQE6Cq_bl0fWvDXbCuIEutuPDgiJUg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e8/e8GiayPJHb2_acrCNnrEDTa7JmxjSEMzyvG-hYK-7vA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e9/e9KzPfL5eEcjvHdReoFYyt_a_q-1idB-Vvh2TBNo9kM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eB/eBV39nHMcVgiw55P19Yot68rIP9KwJA9Ul2iwI1PV4I.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eO/eOHu2nGcsXgjovu-tzLmFDIfE_7GFcREEuM8R3IUESc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e_/e_E_TGxTxApSvDE3nc5l3ApDhvU67wcaXUNjcuRagyE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fB/fBZ0wNaPUuOAnD_aJpwR6T_IB55EGzl9ZH3ERt_0Ntw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fM/fMKXmCgsyRnk2JTxk6Jr8_lv3Y56n9K01cLEQ8mG-SQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fU/fU5DWUU-JvDFpe70dVGtAnWRJGQJ6V1TSdq2Rjicb3o.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fX/fXzQhgJjIk-9Ewhk0QEOAY6cgvEhaSQIP6IxcTWGIXE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fy/fy7tDBZI-exmL6P5ucBDvhDJS6u2u9C-YBc0asnfc-o.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g8/g8GXGG6855WO5fmq9ZYX80B0tTToBkJNTjIF0au9PN4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gB/gB8RYXBYgK_ro7CaAm8Q2srpAeNj0K3FR4PGs81nyjY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gU/gUvXN3P0h_XTrC-g9vztEcFaStlUITNznI6gymhzNAI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g_/g_GHqMv-tY1dAearG5Oi0zS-ggNd5-tfByx9JLVtUuI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gb/gb1t0kex46Po5WohUHW9qGekA7QssftJZG8GY5gY6ko.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gm/gmUq8njyPBvQFhNCe-JKC8xQptF-aeS31GYQ6Az8HqE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/go/gof5cOJtYc_lSB1X4RdzjU8qmOeFHuAU3uySXgvBYfc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/go/gom_Z0UCH-u-vnj22bgJ22B9BJu2aU3AksDUrjA_iBk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gs/gs8O-hnSVTNtAMoD9-yrTB7WC2L1NXNBheKKW_4t_xw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hA/hAaWp60N8Z30vvAx-6P5G8teJClOv5cmHRVizAuJip8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hE/hEfqVpUEZekaAwq2WfcTahAURqOqs8qMJRVAMBLJBbk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hH/hHjkl-8rfn66AukqclNV4Y9M_eZFFZGKQmh5XJsF1sU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hV/hV518O9EIBNsElloD9OmtKMfbpuG0iJar6WWqHv52RY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4OZu7dEwcFP6RiyvrGRH5vXaaKjuHP8ogM6Ex5kq94.cache +34 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i8/i8FK11_VmjBkH3nN6CiSoNUTetROs8InQhLJFX2Feuo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iK/iKD_EVENnAK9F4ZbyFFVRdJs479d65nJ_KqAzUR5Jv4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iS/iSj1-JtKjw3gRN_udETVAvgOWYtIWksqFRyeRFb8JT0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iY/iYhimmRrdDOmXCdoOoOMlvf5hLfXlGLdIiEAuxsah00.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iZ/iZddZAo83yMIxT5XrZQn_qOzOldCeWUGlKzM4a4iHi0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ik/ikqi0IrytERlPVbeJrNZnd1jaKMHIIc5Blerf_4lbh4.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iv/iv6T1gN5PeXsPqcKZfJmugUyfCfzNfKc3a_kuNIAGkg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jOoARY0_H16bOncdSljrZHIez-0i3Aa7pkOmoMD4V94.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jo/joNuCo28WIUI2Quu8ZNIysH_naxu3QaxSmBMl0__S3A.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jy/jyvFLTwfd-GBTXz0Ij5UfLGipNU5E7DnnR7-3QzlIqk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jzPyFfRUoJtNBspAPe406gy5b-je7mVI8Iljtqx-D_s.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jzhWwPjPTZ2AHnbPndzvxEHg4vGMd5MyQ1zr5eEKLIQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/k-/k-bsTA315sR8iUULydbJ9swQ_sbliU0Z3nmwvFduMoQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kC/kClGcEovuXyEHKJSC1hme_H4Krcr3KVFFQCqpYSj0XM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kV/kVHN4A4zYggs4nTdUBOLo32CBWEdxaSYqxfBHOY-uiw.cache +4 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kY/kYKwZY52fIqpIfkH7ACYcQTG4f3zVELbXnyLM9urL4E.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kZ/kZxWUPfRKbr-qPNpO0Ua0NhCyUzuNxAOw_mb50LtDKk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kd/kdL50jtZVyoRsQsM0qPl7knJBuDCwyB57SSqw0HSQ7M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kj/kjoRhWOMx9fK5AQMQkXgphV2ejz_k4U0Yad6cZK9T8Y.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kt/ktRSOHf8LmLBcctML1pWSKZe7EPp0XQvvllnUcMxo9E.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l-/l-i3cCbRAB-1xXgi556PZ7nf3l9mASREJlZt3oWG9i4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDUZEswtA28Grc4uEjhh59oCte6togsAgVdNUVzVaV4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOIWXFLRjbYyI9mLVkvye3Q5Wnm6ITE9YT0-GfF_7gM.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lb/lbCIe-_wBeUNLgqEjndiqzpP2-wU0xCegZZX6Pb4sjI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lo/lotZ2_nrSJoe_Pk7oUuBG2dPM5eb21dzmhIlS_8o32o.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lu/luWp4WzF2hyzqRLszkLOcO2OsS4BNJrwN5qkemrz5d8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ly/lybWKD--tFmTeFPk7wPFXI-W3ML-fcFvJvgpIzCtnIg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lz/lzrbYKw8sFEeiyZX1Ubi1ipIOqLU1twifxKMI7pjFQ4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m5/m5cGvQXpnfkv2Z3KxK5jj3puniMbCp3S_KZgiX8mBeE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ma/mazExAryROL99lB5loLr35pKKQdItgO0HGbJuM9LckY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mg/mgKQfCNtf8r-ZBapE8bOEFMzHCe5vL3gXf2pwytxr24.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mt/mti_Jdr3zlygSo4F5-1sh1eE_lSBfg23UMyg7ntjZhs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n2/n2_eb7-0_P3GbGfeuHM1itcSYYqaH07WA6pxkWSZ4tA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n5/n5I7_qSJhpK5lyGIithQ6GZQ27QqHTpfkbM3e6lcalo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nC/nCPthWYsu-ebO0lkcVdEr6JYDBRzQSXvBsKlUi-Vywc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nF/nF2VsahVKvj5ttjplShxWAS6o-QrYP39aNCYM1bhA_0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nJ/nJePY9ytiYb512436eGT54JwgRoiM2bONQuGyhI7NAw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nP/nPNoRp8-Rd2esnw33idQQzsqPQmPpdaML6aMhnPiIBQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ne/ne1rW0U7Iur1T5TReRJl_oVcWo2mfWHg2rEaYvr_puA.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/np/np-WWCJWkPeCSA0XMyTen8X-M4z0t2KuDptKsuCwtEc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ns/nsKR7KKkNmslVYgFDHHSEYDRKx7VTDnVsHWssvfUXSw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oI/oId3KhirWQ-C-oCpGpopbJvBxg1omuycDiPQO9QoidU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oU/oUMojGzGoi9vWIsLjJ1lkpDHDSg24Ippt3LrUNxXBKE.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oa/oa8BEUBHD__7PZO3Dkm4vYmayf15lXnx4Hbde4YhED0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oa/oaULzROl-EIKUX1wtv--qdSk2Ob4waf1uDtUvH8cRhI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oi/oijeUTPOYSNJUXrc99EGSI1JkAlpfdstQ7sHZSrw3FI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ot/otmFaWx5df8QrUNC49Uw9vqPyqtaXFoIuIRQWF2n7Fg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/p5/p5esSXhHrBSUI5j-4U7e8BOHHy3_ngiC7w8OFMR48B4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pN/pNg_LbDFbq9OxIY0sa8HbGsYgXGZa9e6Q8QcUwQWm04.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZuHmfLtBIWEUZGf0WieL_w49dPPYVbylJ8T73mqnJ0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZxVHLMx7khLtIMo9fjhCqdlwacpJaH7-64N3c2rfOg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pa/paGfyV5vhQ_RcOi1ne7TXOCpHHfFhFm7A88zsEsKbTI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pw/pwlaRT9R5RKaIfmyiLuMGJdydm-woI1jiYFRtVonBE4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/px/pxP13aR-_9cgGr5oko9dPte7a6lOHdYROyuL0M5WO_Q.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pz/pzeOADCHHzI7Ea3YEGm19QuVSvSo4SseTLyMnNcyX3g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qH/qHfRjbU6haHtXIzDHnX5WooVTpvUFQNlQ0W2P0N9ZB8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qZ/qZNeYLsLXppm7FXm6ypF4TkEHiRlTGzaQfu11Jenk0w.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qn/qnqqDu1kS8ig9iEei5CjAYND02unYf-E22-J953_GIc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qp/qpnn4gewy2_0O7aLG1YcbCjdvoFzZxERgl-uAb2NBiU.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qv/qvMLpcYylz3ox1lJGCNSuUofOyQj2uExai2hhoxtaNo.cache +88 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r7/r7TP3kGzyr-Vkv7_54BZDEdpSWctoZGWNfsJSLHirZ8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rL/rLw_U9zk7911G5PTpvSQz2vXXFCxb75MSm0jUpvg9SM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rS-6Ew0r0DBaZoTyAD1yMYRbBiJtFyn6nwxe6G_9ruk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r_/r_n_kG4-nIL95oTN47GEKk_lfdqmQf36WPVgPCrWQE8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rp/rpuD7pOyPqwoSucHcrYwhz6kJsiud8cArmy0iBlyd80.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rs/rs3WNo4WHv0_i5eYqZZBmzcomfSJYnEkbx-nIcg829o.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rv/rvPXCY9kJZYjGQOyZ6zPTQuqWqqQRgIDvwlmVSfV18Q.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s6/s63yj4K5dBEUBOASVinO-mengQsB-selvrc6jWpIgLo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s8/s8WLHYe9o7_u4hG_f1qAhNKsPP-1IY8XbMGZkYIXXvI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPCsm6ym3xm2G7DaEcE8AIICPGqMBlhJuy3WLz2cnkk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sU/sUDa6Eui9OGhH4Yz5zQrtE6TpDbpHe6GkreEZz1iHdk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sZ/sZtiTJNHZFFrthcLHBicIbXWd2TtA2KwwgmfJrbvz08.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/si/siTPqqMBLMQ8XvqhzrKKm2QO0RAGV3dzZCrq3W8MhEE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sy/syPR2eDvwGYa--qOMAhm67cr3ZFLCG-asZc8aYJVTKo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t8/t8y_ZPP9-4_51wwcfL76BFgKZPmOZpZQm3fgN8_MCb4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t9/t9f7WTFS7WxtUfLPv9FztZ41ttKR3uZoFgQswiIkCNc.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tF/tFBBIqJk8kEXHwZodwwsDG1ZnLtHUgQExLBppHiMr70.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ta/taq_1F0tJ6U8bu-OF3gqFN4HMNa0832x27AUM7tOOVo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tg/tgLSnhi-CBO9Qhq8vCPvLBkpI3njksidoXfkabaWa9k.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tl/tl6qqxHgVleP0a9KSycK9BM3hj-z6iJj3X2h-c6SZDA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tm/tmaJOSffTEYtcfi-6sWO_XlHqgf5F62EJzsxMoiliN4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tq/tq4bn2zWsw4Rn9Sxdxkc7wIBZpUmUNN7CR5H_Hc4QG8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tu/tufINiTig_EQDeMrM0R6B3_eTPvfCiqHDIUEguhK5is.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-FHi-y_Fa2OhW24pJBY_w3EK9RnfQdxh_E150hVViU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u8/u8eyB2x_fVKUn-D8y1bx18f_2dk0bWeImNjqPZc6HqU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uT/uTNVE3NY1ksQlwvCuW1g3wMNith1NplTDn7KGxHrTrw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ua/uaYmkrxjL7SgFY_F9U0_KrO42xt6uxQPt5-d-GwN3Jc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ue/ueYJcOzPBq_dHe4FpnJPom2jTP-w6i7zTrm8ZN_WHXY.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uj/ujuCUIfxGuMI9earvnYE8R073JdAet_M_Lx7yLBQaqM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ur/urg6918jMKrw9Z3-siteDpdSB55Vy_5Coh2p0dL3CDU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ut/utKGvtqVVaepyzJP7X2dBCCMSAz2s9v0_21vwTTDPOQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4YKXv2hlGUeiyi9VSjxWGH4NBXXEjwiLt5VSZZVDJI.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v8/v8XTZeBYrD2zAFKla-tryCmIEC45svJcgzLho9iPpao.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vA/vAcroqeHoBGbq8WECKZcrHr2oecOFCuRj_g3xP8BDuQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vq/vqN7_QESrnr6Ntr92PtKqw9y2BA-QQhm3NMUEGIbo1g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vy/vyLZEQLZ3xnZOS8rkPJkn99exa9iWfp7b94TCA82rN0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wE/wE594oHt6S4KFKsmfov1kDvtWp4EsgzayvxkgiV3fSI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wJ/wJGQEQMUVIfogUMeqByKzgzp3jx8UhJpw5H-A-_13rQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wS/wSpeyZHxI9sVvX9vmAMBsDtev_-84hhZUgWbdw_1hdY.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ws/wsLfx4rZUyGgoO2GQ25w7WFKQr8Z9QST1nwzL5a5YdM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x5/x5ieWkO-xwUmxcvbLpGpbu2K3yI7XL5Rkk7QkGjh1rE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xB/xBh2X6Oi49pZ_E3mbq7SsP3ByxO_UZ-nYQFFfERITPA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xB/xBjW2BCfb5ZXATMsqLMgVZLCyHpsutC4QvuD3B4dv0s.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xC/xCobBePQjr16SbYrc5w5Tfe9I4FoONzo9b8VWWX1zQc.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xM/xM3Jc0mmYcUFDRU_7lcjA449kcUoYSo_ldYjRmHyyGQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xO/xOyWmCSKdlLb_Vo82CnEwKX4WplT0dWgLopGdZdn6ps.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xc/xcPtmfwG9T5T8aRdaRDs1puIubUCHovlaQs1u9gz0uw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xh/xhifkps610G7poIB5AOYiqU9Td1FRoM5GUR18JmzwZ0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yA/yAqqjm4p0msFcQ3JY5xB9tn9Ce2zAAIO8VKODfkCHiM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yP/yPz2VJ6Vl8vPBvK0-_SRkUas7QHg2vISvonUKHoP11I.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqTOqOVKuROAWr0yJzXqkvWu3fG8iqyBgym-JvQ3l9g.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJg63U7CH9pgFYJKSqqi_Bdj59nKjpJfQndjB_feigE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zO/zO8x4k_kKzuyQ8-OaOrc91BwdaNUnbgQR5WY0U07Yqw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPDO-TeUvtDtOWoPUcUjI-cOAFXTEUdjJgG54uLZPRo.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zc/zcv_tgTR0i4YpYoGSmavm3It0msTspYLth0tRiTmcCI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zc/zcwbDEQA_tWArQ7NnzCD_8PyQiXW754vGA5YXeuZcSM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zq/zqtY7QpZ7w8PtGG3A9R8GNEesjDMDUU0NWzb3d4oX14.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zz/zz0mg2-jBzPspm3C-K0A0xYLznt5-daRhOepNO-r-0I.cache +1 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/tmp/storage/5k/83/5k83jxFDYb2wMVdXM68vHkkJ +0 -0
- data/spec/dummy/tmp/storage/6H/GA/6HGA6XuoXQsS3ZqGUZ3PtLqM +0 -0
- data/spec/dummy/tmp/storage/Bo/TG/BoTGgqaa59RZuHwoM1GmSvyR +0 -0
- data/spec/dummy/tmp/storage/Bv/Rw/BvRwN2rrUPcdfd8n1gDqFawB +0 -0
- data/spec/dummy/tmp/storage/C8/G5/C8G5cFjPsZN2Q9Ydx2CJ3dzQ +0 -0
- data/spec/dummy/tmp/storage/Dq/iy/DqiyVUS7CUL8aSbEAMNtoEdD +0 -0
- data/spec/dummy/tmp/storage/EU/Tb/EUTb4CcbHeq6q6BmqhHxLR96 +0 -0
- data/spec/dummy/tmp/storage/HT/pm/HTpmYShupi5EJNrradja6mVL +0 -0
- data/spec/dummy/tmp/storage/Jb/Ja/JbJaAhVpr1V51SxJTyM3D2zF +0 -0
- data/spec/dummy/tmp/storage/Jp/BN/JpBNdvYnjnikW4UqycMs6S56 +0 -0
- data/spec/dummy/tmp/storage/Pe/Pc/PePcBQHnSDk5ZTrxftxczfRZ +0 -0
- data/spec/dummy/tmp/storage/UF/Zp/UFZpwtMcXFWg4DobzR39hofU +0 -0
- data/spec/dummy/tmp/storage/V1/af/V1afuALSJzpRpCifsnAeQWiE +0 -0
- data/spec/dummy/tmp/storage/d7/2A/d72AwmhJ3n4AE3yMtCBWLKzC +0 -0
- data/spec/dummy/tmp/storage/dT/nX/dTnXwvBxb5q1sz4V9RoFEY9f +0 -0
- data/spec/dummy/tmp/storage/hr/k7/hrk7FyAW9UPTARPBoaLC5S6R +0 -0
- data/spec/dummy/tmp/storage/kc/6t/kc6tSy4nscztYUiueCfAGegB +0 -0
- data/spec/dummy/tmp/storage/kx/oG/kxoG4tFDKMyaJU9mqe7ujN4T +0 -0
- data/spec/dummy/tmp/storage/mQ/L8/mQL8JjXA8QsYTKkZcq7wH2er +0 -0
- data/spec/dummy/tmp/storage/me/so/meso4MFkX8A2P1EJDurmGKhE +0 -0
- data/spec/dummy/tmp/storage/mr/pw/mrpwPSd8RMydrLgNTDpdxX5k +0 -0
- data/spec/dummy/tmp/storage/pN/pt/pNptiSgGcoegZMiaAvcETCth +0 -0
- data/spec/dummy/tmp/storage/qa/Ha/qaHaTBocH4C8qeom3YqgUpi8 +0 -0
- data/spec/dummy/tmp/storage/sZ/oX/sZoX6LX7LPetJEHdVyYSnShV +0 -0
- data/spec/dummy/tmp/storage/xx/XP/xxXPp1mpoasrBznSKYn4dBAn +0 -0
- data/spec/dummy/tmp/storage/yE/W9/yEW9dkvFMwX2oBGLwdooz9z9 +0 -0
- data/spec/dummy/tmp/storage/yi/DX/yiDXXQ9GkMUnaSpW4xNiMgG8 +0 -0
- data/spec/dummy/tmp/storage/ze/tP/zetP27EpeZ3wJrz3rrqzGnGX +0 -0
- data/spec/factories/active_storage/attachments.rb +7 -0
- data/spec/factories/active_storage/blobs.rb +10 -0
- data/spec/factories/cmor_system_changelogs.rb +8 -0
- data/spec/factories/delayed/backend_active_record_jobs.rb +5 -0
- data/spec/features/de/backend/system/active_storage/attachments_feature_spec.rb +20 -0
- data/spec/features/de/backend/system/active_storage/blobs_feature_spec.rb +20 -0
- data/spec/features/de/backend/system/changelogs_feature_spec.rb +13 -0
- data/spec/features/de/backend/system/delayed_backend_active_record_jobs_feature_spec.rb +55 -0
- data/spec/files/active_storage/blob/example.png +0 -0
- data/spec/files/cmor/system/changelog/file/example.md +5 -0
- data/spec/models/cmor/system/changelog_spec.rb +36 -0
- data/spec/models/generic_spec.rb +52 -0
- data/spec/models/i18n_spec.rb +42 -0
- data/spec/rails_helper.rb +62 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/support/capybara.rb +1 -0
- data/spec/support/factory_bot.rb +12 -0
- data/spec/support/pry-rails.rb +1 -0
- data/spec/support/rao-shoulda_matchers.rb +5 -0
- data/spec/support/shoulda_matchers.rb +8 -0
- metadata +934 -0
|
@@ -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]
|
|
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,33 @@
|
|
|
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
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
|
20
|
+
# the default I18n backend:
|
|
21
|
+
#
|
|
22
|
+
# true, false, on, off, yes, no
|
|
23
|
+
#
|
|
24
|
+
# Instead, surround them with single quotes.
|
|
25
|
+
#
|
|
26
|
+
# en:
|
|
27
|
+
# 'true': 'foo'
|
|
28
|
+
#
|
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
|
30
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
|
31
|
+
|
|
32
|
+
en:
|
|
33
|
+
hello: "Hello world"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
en:
|
|
2
|
+
simple_form:
|
|
3
|
+
"yes": 'Yes'
|
|
4
|
+
"no": 'No'
|
|
5
|
+
required:
|
|
6
|
+
text: 'required'
|
|
7
|
+
mark: '*'
|
|
8
|
+
# You can uncomment the line below if you need to overwrite the whole required html.
|
|
9
|
+
# When using html, text and mark won't be used.
|
|
10
|
+
# html: '<abbr title="required">*</abbr>'
|
|
11
|
+
error_notification:
|
|
12
|
+
default_message: "Please review the problems below:"
|
|
13
|
+
# Examples
|
|
14
|
+
# labels:
|
|
15
|
+
# defaults:
|
|
16
|
+
# password: 'Password'
|
|
17
|
+
# user:
|
|
18
|
+
# new:
|
|
19
|
+
# email: 'E-mail to sign in.'
|
|
20
|
+
# edit:
|
|
21
|
+
# email: 'E-mail.'
|
|
22
|
+
# hints:
|
|
23
|
+
# defaults:
|
|
24
|
+
# username: 'User name to sign in.'
|
|
25
|
+
# password: 'No special characters, please.'
|
|
26
|
+
# include_blanks:
|
|
27
|
+
# defaults:
|
|
28
|
+
# age: 'Rather not say'
|
|
29
|
+
# prompts:
|
|
30
|
+
# defaults:
|
|
31
|
+
# age: 'Select your age'
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
|
2
|
+
# The `threads` method setting takes two numbers: a minimum and maximum.
|
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
|
5
|
+
# and maximum; this matches the default thread size of Active Record.
|
|
6
|
+
#
|
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
|
8
|
+
threads threads_count, threads_count
|
|
9
|
+
|
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
|
11
|
+
#
|
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
|
13
|
+
|
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
|
15
|
+
#
|
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
|
17
|
+
|
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
|
22
|
+
# processes).
|
|
23
|
+
#
|
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
|
25
|
+
|
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
|
29
|
+
# process behavior so workers use less memory.
|
|
30
|
+
#
|
|
31
|
+
# preload_app!
|
|
32
|
+
|
|
33
|
+
# Allow puma to be restarted by `rails restart` command.
|
|
34
|
+
plugin :tmp_restart
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Rails.application.routes.draw do
|
|
2
|
+
|
|
3
|
+
localized do
|
|
4
|
+
mount Cmor::System::Engine, at: '/backend/cmor-system-engine'
|
|
5
|
+
end
|
|
6
|
+
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
7
|
+
localized do
|
|
8
|
+
mount Administrador::Engine, at: '/administrador-engine'
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
test:
|
|
2
|
+
service: Disk
|
|
3
|
+
root: <%= Rails.root.join("tmp/storage") %>
|
|
4
|
+
|
|
5
|
+
local:
|
|
6
|
+
service: Disk
|
|
7
|
+
root: <%= Rails.root.join("storage") %>
|
|
8
|
+
|
|
9
|
+
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
|
10
|
+
# amazon:
|
|
11
|
+
# service: S3
|
|
12
|
+
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
|
13
|
+
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
|
14
|
+
# region: us-east-1
|
|
15
|
+
# bucket: your_own_bucket
|
|
16
|
+
|
|
17
|
+
# Remember not to checkin your GCS keyfile to a repository
|
|
18
|
+
# google:
|
|
19
|
+
# service: GCS
|
|
20
|
+
# project: your_project
|
|
21
|
+
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
|
22
|
+
# bucket: your_own_bucket
|
|
23
|
+
|
|
24
|
+
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
|
25
|
+
# microsoft:
|
|
26
|
+
# service: AzureStorage
|
|
27
|
+
# storage_account_name: your_account_name
|
|
28
|
+
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
|
29
|
+
# container: your_container_name
|
|
30
|
+
|
|
31
|
+
# mirror:
|
|
32
|
+
# service: Mirror
|
|
33
|
+
# primary: local
|
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
class CreateDelayedJobs < ActiveRecord::Migration[5.2]
|
|
2
|
+
def self.up
|
|
3
|
+
create_table :delayed_jobs, force: true do |table|
|
|
4
|
+
table.integer :priority, default: 0, null: false # Allows some jobs to jump to the front of the queue
|
|
5
|
+
table.integer :attempts, default: 0, null: false # Provides for retries, but still fail eventually.
|
|
6
|
+
table.text :handler, null: false # YAML-encoded string of the object that will do work
|
|
7
|
+
table.text :last_error # reason for last failure (See Note below)
|
|
8
|
+
table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future.
|
|
9
|
+
table.datetime :locked_at # Set when a client is working on this object
|
|
10
|
+
table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead)
|
|
11
|
+
table.string :locked_by # Who is working on this object (if locked)
|
|
12
|
+
table.string :queue # The name of the queue this job is in
|
|
13
|
+
table.timestamps null: true
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
add_index :delayed_jobs, [:priority, :run_at], name: "delayed_jobs_priority"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.down
|
|
20
|
+
drop_table :delayed_jobs
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This migration comes from active_storage (originally 20170806125915)
|
|
2
|
+
class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
|
|
3
|
+
def change
|
|
4
|
+
create_table :active_storage_blobs do |t|
|
|
5
|
+
t.string :key, null: false
|
|
6
|
+
t.string :filename, null: false
|
|
7
|
+
t.string :content_type
|
|
8
|
+
t.text :metadata
|
|
9
|
+
t.bigint :byte_size, null: false
|
|
10
|
+
t.string :checksum, null: false
|
|
11
|
+
t.datetime :created_at, null: false
|
|
12
|
+
|
|
13
|
+
t.index [ :key ], unique: true
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
create_table :active_storage_attachments do |t|
|
|
17
|
+
t.string :name, null: false
|
|
18
|
+
t.references :record, null: false, polymorphic: true, index: false
|
|
19
|
+
t.references :blob, null: false
|
|
20
|
+
|
|
21
|
+
t.datetime :created_at, null: false
|
|
22
|
+
|
|
23
|
+
t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
24
|
+
t.foreign_key :active_storage_blobs, column: :blob_id
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
4
|
+
#
|
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
6
|
+
# database schema. If you need to create the application database on another
|
|
7
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
8
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
9
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
10
|
+
#
|
|
11
|
+
# It's strongly recommended that you check this file into your version control system.
|
|
12
|
+
|
|
13
|
+
ActiveRecord::Schema.define(version: 2020_01_28_171034) do
|
|
14
|
+
|
|
15
|
+
create_table "active_storage_attachments", force: :cascade do |t|
|
|
16
|
+
t.string "name", null: false
|
|
17
|
+
t.string "record_type", null: false
|
|
18
|
+
t.integer "record_id", null: false
|
|
19
|
+
t.integer "blob_id", null: false
|
|
20
|
+
t.datetime "created_at", null: false
|
|
21
|
+
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
|
22
|
+
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
create_table "active_storage_blobs", force: :cascade do |t|
|
|
26
|
+
t.string "key", null: false
|
|
27
|
+
t.string "filename", null: false
|
|
28
|
+
t.string "content_type"
|
|
29
|
+
t.text "metadata"
|
|
30
|
+
t.bigint "byte_size", null: false
|
|
31
|
+
t.string "checksum", null: false
|
|
32
|
+
t.datetime "created_at", null: false
|
|
33
|
+
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
create_table "delayed_jobs", force: :cascade do |t|
|
|
37
|
+
t.integer "priority", default: 0, null: false
|
|
38
|
+
t.integer "attempts", default: 0, null: false
|
|
39
|
+
t.text "handler", null: false
|
|
40
|
+
t.text "last_error"
|
|
41
|
+
t.datetime "run_at"
|
|
42
|
+
t.datetime "locked_at"
|
|
43
|
+
t.datetime "failed_at"
|
|
44
|
+
t.string "locked_by"
|
|
45
|
+
t.string "queue"
|
|
46
|
+
t.datetime "created_at"
|
|
47
|
+
t.datetime "updated_at"
|
|
48
|
+
t.index ["priority", "run_at"], name: "delayed_jobs_priority"
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
create_table "posts", force: :cascade do |t|
|
|
52
|
+
t.string "title"
|
|
53
|
+
t.datetime "created_at", null: false
|
|
54
|
+
t.datetime "updated_at", null: false
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
end
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
-# frozen_string_literal: true
|
|
2
|
+
= simple_form_for(@<%= singular_table_name %>) do |f|
|
|
3
|
+
= f.error_notification
|
|
4
|
+
= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present?
|
|
5
|
+
|
|
6
|
+
.form-inputs
|
|
7
|
+
<%- attributes.each do |attribute| -%>
|
|
8
|
+
= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %>
|
|
9
|
+
<%- end -%>
|
|
10
|
+
|
|
11
|
+
.form-actions
|
|
12
|
+
= f.button :submit
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
|
2
|
+
↳ bin/rails:4
|
|
3
|
+
[1m[35m (12.8ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
|
4
|
+
↳ bin/rails:4
|
|
5
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
6
|
+
↳ bin/rails:4
|
|
7
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
8
|
+
↳ bin/rails:4
|
|
9
|
+
Migrating to CreateDelayedJobs (20200128171009)
|
|
10
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
11
|
+
↳ bin/rails:4
|
|
12
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
|
13
|
+
↳ db/migrate/20200128171009_create_delayed_jobs.rb:3
|
|
14
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
|
15
|
+
↳ db/migrate/20200128171009_create_delayed_jobs.rb:3
|
|
16
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
17
|
+
↳ db/migrate/20200128171009_create_delayed_jobs.rb:16
|
|
18
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200128171009"]]
|
|
19
|
+
↳ bin/rails:4
|
|
20
|
+
[1m[35m (6.2ms)[0m [1m[36mcommit transaction[0m
|
|
21
|
+
↳ bin/rails:4
|
|
22
|
+
Migrating to CreateActiveStorageTables (20200128171022)
|
|
23
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
24
|
+
↳ bin/rails:4
|
|
25
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)[0m
|
|
26
|
+
↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:4
|
|
27
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")[0m
|
|
28
|
+
↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:4
|
|
29
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
|
|
30
|
+
FOREIGN KEY ("blob_id")
|
|
31
|
+
REFERENCES "active_storage_blobs" ("id")
|
|
32
|
+
)[0m
|
|
33
|
+
↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
|
|
34
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")[0m
|
|
35
|
+
↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
|
|
36
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")[0m
|
|
37
|
+
↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
|
|
38
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200128171022"]]
|
|
39
|
+
↳ bin/rails:4
|
|
40
|
+
[1m[35m (3.3ms)[0m [1m[36mcommit transaction[0m
|
|
41
|
+
↳ bin/rails:4
|
|
42
|
+
Migrating to CreatePosts (20200128171034)
|
|
43
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
44
|
+
↳ bin/rails:4
|
|
45
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
46
|
+
↳ db/migrate/20200128171034_create_posts.rb:3
|
|
47
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200128171034"]]
|
|
48
|
+
↳ bin/rails:4
|
|
49
|
+
[1m[35m (3.5ms)[0m [1m[36mcommit transaction[0m
|
|
50
|
+
↳ bin/rails:4
|
|
51
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
52
|
+
↳ bin/rails:4
|
|
53
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
54
|
+
↳ bin/rails:4
|
|
55
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-01-28 17:10:47.760841"], ["updated_at", "2020-01-28 17:10:47.760841"]]
|
|
56
|
+
↳ bin/rails:4
|
|
57
|
+
[1m[35m (3.4ms)[0m [1m[36mcommit transaction[0m
|
|
58
|
+
↳ bin/rails:4
|
|
59
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
60
|
+
↳ bin/rails:4
|
|
61
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
62
|
+
↳ bin/rails:4
|
|
63
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
|
64
|
+
↳ bin/rails:4
|
|
65
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
66
|
+
↳ bin/rails:4
|
|
67
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
|
68
|
+
↳ bin/rails:4
|
|
69
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
70
|
+
↳ bin/rails:4
|
|
71
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
|
72
|
+
↳ bin/rails:4
|
|
73
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "active_storage_attachments"[0m
|
|
74
|
+
↳ db/schema.rb:15
|
|
75
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
|
76
|
+
↳ db/schema.rb:15
|
|
77
|
+
[1m[35m (5.1ms)[0m [1m[35mCREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)[0m
|
|
78
|
+
↳ db/schema.rb:15
|
|
79
|
+
[1m[35m (3.7ms)[0m [1m[35mCREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")[0m
|
|
80
|
+
↳ db/schema.rb:15
|
|
81
|
+
[1m[35m (18.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")[0m
|
|
82
|
+
↳ db/schema.rb:15
|
|
83
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "active_storage_blobs"[0m
|
|
84
|
+
↳ db/schema.rb:25
|
|
85
|
+
[1m[35m (13.8ms)[0m [1m[35mCREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)[0m
|
|
86
|
+
↳ db/schema.rb:25
|
|
87
|
+
[1m[35m (12.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")[0m
|
|
88
|
+
↳ db/schema.rb:25
|
|
89
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "delayed_jobs"[0m
|
|
90
|
+
↳ db/schema.rb:36
|
|
91
|
+
[1m[35m (17.2ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
|
92
|
+
↳ db/schema.rb:36
|
|
93
|
+
[1m[35m (11.8ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
94
|
+
↳ db/schema.rb:36
|
|
95
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "posts"[0m
|
|
96
|
+
↳ db/schema.rb:51
|
|
97
|
+
[1m[35m (35.5ms)[0m [1m[35mCREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
98
|
+
↳ db/schema.rb:51
|
|
99
|
+
[1m[35m (8.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
|
100
|
+
↳ db/schema.rb:13
|
|
101
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
102
|
+
↳ db/schema.rb:13
|
|
103
|
+
[1m[35m (13.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20200128171034)[0m
|
|
104
|
+
↳ db/schema.rb:13
|
|
105
|
+
[1m[35m (5.5ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
|
106
|
+
(20200128171009),
|
|
107
|
+
(20200128171022);
|
|
108
|
+
|
|
109
|
+
[0m
|
|
110
|
+
↳ db/schema.rb:13
|
|
111
|
+
[1m[35m (7.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
112
|
+
↳ db/schema.rb:13
|
|
113
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
114
|
+
↳ db/schema.rb:13
|
|
115
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
116
|
+
↳ db/schema.rb:13
|
|
117
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-01-28 17:10:47.981780"], ["updated_at", "2020-01-28 17:10:47.981780"]]
|
|
118
|
+
↳ db/schema.rb:13
|
|
119
|
+
[1m[35m (6.0ms)[0m [1m[36mcommit transaction[0m
|
|
120
|
+
↳ db/schema.rb:13
|
|
121
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
122
|
+
↳ bin/rails:4
|
|
123
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
124
|
+
↳ bin/rails:4
|
|
125
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ?[0m [["value", "test"], ["updated_at", "2020-01-28 17:10:48.002045"], ["key", "environment"]]
|
|
126
|
+
↳ bin/rails:4
|
|
127
|
+
[1m[35m (3.9ms)[0m [1m[36mcommit transaction[0m
|
|
128
|
+
↳ bin/rails:4
|
|
@@ -0,0 +1,2225 @@
|
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3
|
+
[1m[36mPost Create (0.4ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.768142"], ["updated_at", "2020-01-28 17:11:10.768142"]]
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
5
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: DqiyVUS7CUL8aSbEAMNtoEdD (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
6
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
7
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "DqiyVUS7CUL8aSbEAMNtoEdD"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.904028"]]
|
|
8
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
9
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
10
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:10.910789"]]
|
|
11
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:10.912146"], ["id", 1]]
|
|
12
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
13
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) to Async(default) with arguments: #<GlobalID:0x005636ce120308 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
14
|
+
[1m[36mActiveStorage::Blob Load (1.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
15
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Performing ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) from Async(default) with arguments: #<GlobalID:0x005636ce36f348 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
16
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
17
|
+
[1m[36mPost Create (0.2ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.934657"], ["updated_at", "2020-01-28 17:11:10.934657"]]
|
|
18
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
19
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] [36m Disk Storage (1.0ms) [0m[34mDownloaded file from key: DqiyVUS7CUL8aSbEAMNtoEdD[0m
|
|
20
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Skipping image analysis because the mini_magick gem isn't installed
|
|
21
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
22
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
23
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
24
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Performed ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) from Async(default) in 13.87ms
|
|
25
|
+
[36m Disk Storage (9.8ms) [0m[32mUploaded file to key: 5k83jxFDYb2wMVdXM68vHkkJ (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
26
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
27
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "5k83jxFDYb2wMVdXM68vHkkJ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.948832"]]
|
|
28
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
29
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
30
|
+
[1m[36mActiveStorage::Attachment Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 2], ["blob_id", 2], ["created_at", "2020-01-28 17:11:10.951194"]]
|
|
31
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:10.952433"], ["id", 2]]
|
|
32
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
33
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) to Async(default) with arguments: #<GlobalID:0x005636ce08ad58 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
34
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
35
|
+
[1m[36mPost Create (0.1ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.955303"], ["updated_at", "2020-01-28 17:11:10.955303"]]
|
|
36
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
37
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
38
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Performing ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) from Async(default) with arguments: #<GlobalID:0x005636cb50eb48 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
39
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: qaHaTBocH4C8qeom3YqgUpi8 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
40
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
41
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "qaHaTBocH4C8qeom3YqgUpi8"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.967345"]]
|
|
42
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
43
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
44
|
+
[1m[36mActiveStorage::Attachment Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 3], ["blob_id", 3], ["created_at", "2020-01-28 17:11:10.969667"]]
|
|
45
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:10.970829"], ["id", 3]]
|
|
46
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
47
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) to Async(default) with arguments: #<GlobalID:0x005636cbfb9700 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
48
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:11:10 +0100
|
|
49
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] [36m Disk Storage (29.7ms) [0m[34mDownloaded file from key: 5k83jxFDYb2wMVdXM68vHkkJ[0m
|
|
50
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Skipping image analysis because the mini_magick gem isn't installed
|
|
51
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
52
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 2]]
|
|
53
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
54
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Performed ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) from Async(default) in 39.57ms
|
|
55
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
56
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Performing ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) from Async(default) with arguments: #<GlobalID:0x005636cd5bd3f8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
57
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
|
|
58
|
+
Parameters: {"locale"=>"de"}
|
|
59
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
60
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (3.3ms)
|
|
61
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] [36m Disk Storage (49.8ms) [0m[34mDownloaded file from key: qaHaTBocH4C8qeom3YqgUpi8[0m
|
|
62
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Skipping image analysis because the mini_magick gem isn't installed
|
|
63
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
64
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 3]]
|
|
65
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
66
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Performed ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) from Async(default) in 158.38ms
|
|
67
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (4.1ms)
|
|
68
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (8.4ms)
|
|
69
|
+
[1m[36mActiveStorage::Attachment Load (0.2ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
70
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (3.3ms)
|
|
71
|
+
[1m[36mPost Load (0.2ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
72
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (10.7ms)
|
|
73
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
74
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
75
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
76
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
77
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.2ms)
|
|
78
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
79
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
80
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
81
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
82
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.9ms)
|
|
83
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
84
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
85
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (57.4ms)
|
|
86
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (2.7ms)
|
|
87
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (4.1ms)
|
|
88
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (271.8ms)
|
|
89
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (2.7ms)
|
|
90
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
91
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (10.3ms)
|
|
92
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (4.4ms)
|
|
93
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (3.7ms)
|
|
94
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
95
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
96
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
97
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
98
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (50.9ms)
|
|
99
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
100
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (5.8ms)
|
|
101
|
+
Completed 200 OK in 2563ms (Views: 2530.5ms | ActiveRecord: 1.2ms)
|
|
102
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
103
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
104
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
105
|
+
[1m[36mPost Create (0.2ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:13.638616"], ["updated_at", "2020-01-28 17:11:13.638616"]]
|
|
106
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
107
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: PePcBQHnSDk5ZTrxftxczfRZ (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
108
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
109
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "PePcBQHnSDk5ZTrxftxczfRZ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:13.643369"]]
|
|
110
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
111
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
112
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:13.645811"]]
|
|
113
|
+
[1m[36mPost Update (2.3ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:13.647135"], ["id", 1]]
|
|
114
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
115
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) to Async(default) with arguments: #<GlobalID:0x005636d0abcd60 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
116
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:13 +0100
|
|
117
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
|
|
118
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
119
|
+
[1m[36mActiveStorage::Blob Load (4.9ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
120
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Performing ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) from Async(default) with arguments: #<GlobalID:0x005636d0a04558 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
121
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] [36m Disk Storage (0.2ms) [0m[34mDownloaded file from key: PePcBQHnSDk5ZTrxftxczfRZ[0m
|
|
122
|
+
[1m[36mActiveStorage::Attachment Load (0.2ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
123
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Skipping image analysis because the mini_magick gem isn't installed
|
|
124
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
125
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
126
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
127
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
128
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Performed ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) from Async(default) in 56.48ms
|
|
129
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
130
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (2.8ms)
|
|
131
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (3.9ms)
|
|
132
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
133
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
134
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
135
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
136
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (5.9ms)
|
|
137
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.3ms)
|
|
138
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
139
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (30.4ms)
|
|
140
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (2.4ms)
|
|
141
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (8.9ms)
|
|
142
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (210.9ms)
|
|
143
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
144
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
145
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
146
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
|
|
147
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
148
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
149
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
150
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
151
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
152
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.9ms)
|
|
153
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
154
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.7ms)
|
|
155
|
+
Completed 200 OK in 282ms (Views: 238.7ms | ActiveRecord: 1.4ms)
|
|
156
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
157
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
158
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
159
|
+
[1m[36mPost Create (0.2ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:13.962998"], ["updated_at", "2020-01-28 17:11:13.962998"]]
|
|
160
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
161
|
+
[36m Disk Storage (1.0ms) [0m[32mUploaded file to key: 6HGA6XuoXQsS3ZqGUZ3PtLqM (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
162
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
163
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "6HGA6XuoXQsS3ZqGUZ3PtLqM"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:13.969281"]]
|
|
164
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
165
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
166
|
+
[1m[36mActiveStorage::Attachment Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:13.972154"]]
|
|
167
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:13.980329"], ["id", 1]]
|
|
168
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
169
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) to Async(default) with arguments: #<GlobalID:0x005636ce04eb00 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
170
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:13 +0100
|
|
171
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
|
|
172
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
173
|
+
[1m[36mActiveStorage::Blob Load (4.8ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
174
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Performing ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) from Async(default) with arguments: #<GlobalID:0x005636ce5c5f98 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
175
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
176
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
177
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
178
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
179
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
180
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
181
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
182
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
183
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
184
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (3.4ms)
|
|
185
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.2ms)
|
|
186
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
187
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (18.6ms)
|
|
188
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.2ms)
|
|
189
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (2.5ms)
|
|
190
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (28.1ms)
|
|
191
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
192
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
193
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
194
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
|
|
195
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
196
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
197
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
198
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
199
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
200
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.9ms)
|
|
201
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
202
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
203
|
+
Completed 200 OK in 58ms (Views: 53.5ms | ActiveRecord: 0.7ms)
|
|
204
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
205
|
+
Started DELETE "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
206
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#destroy as HTML
|
|
207
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
208
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
209
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
210
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
211
|
+
[1m[36mActiveStorage::Attachment Destroy (0.1ms)[0m [1m[31mDELETE FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ?[0m [["id", 1]]
|
|
212
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
213
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:14.075815"], ["id", 1]]
|
|
214
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
215
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] [36m Disk Storage (65.4ms) [0m[34mDownloaded file from key: 6HGA6XuoXQsS3ZqGUZ3PtLqM[0m
|
|
216
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Skipping image analysis because the mini_magick gem isn't installed
|
|
217
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
218
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] [1m[36mActiveStorage::Blob Update (0.2ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
219
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
220
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Performed ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) from Async(default) in 174.99ms
|
|
221
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/attachments
|
|
222
|
+
Completed 302 Found in 97ms (ActiveRecord: 0.6ms)
|
|
223
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
224
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
|
|
225
|
+
Parameters: {"locale"=>"de"}
|
|
226
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
227
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
228
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
229
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (0.2ms)
|
|
230
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
231
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
232
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (2.0ms)
|
|
233
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.0ms)
|
|
234
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
235
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.4ms)
|
|
236
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
237
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
238
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
239
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
240
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
241
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
242
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
243
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
244
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
245
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.4ms)
|
|
246
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
247
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
248
|
+
Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.5ms)
|
|
249
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
250
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
251
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
252
|
+
[36m Disk Storage (3.4ms) [0m[32mUploaded file to key: yEW9dkvFMwX2oBGLwdooz9z9 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
253
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
254
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "yEW9dkvFMwX2oBGLwdooz9z9"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.349265"]]
|
|
255
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
256
|
+
[36m Disk Storage (0.5ms) [0m[32mUploaded file to key: kxoG4tFDKMyaJU9mqe7ujN4T (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
257
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
258
|
+
[1m[36mActiveStorage::Blob Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "kxoG4tFDKMyaJU9mqe7ujN4T"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.353727"]]
|
|
259
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
260
|
+
[36m Disk Storage (0.5ms) [0m[32mUploaded file to key: BoTGgqaa59RZuHwoM1GmSvyR (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
261
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
262
|
+
[1m[36mActiveStorage::Blob Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "BoTGgqaa59RZuHwoM1GmSvyR"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.357647"]]
|
|
263
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
264
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
265
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
|
|
266
|
+
Parameters: {"locale"=>"de"}
|
|
267
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
268
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
269
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (4.5ms)
|
|
270
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
271
|
+
[1m[36mActiveStorage::Blob Load (0.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
272
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
273
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
274
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
275
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
276
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
277
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
278
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
279
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
280
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
281
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
282
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
283
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
284
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (34.5ms)
|
|
285
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
286
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
287
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (98.0ms)
|
|
288
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
289
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
290
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
291
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
292
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
293
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
294
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
295
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
296
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
297
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
|
|
298
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
299
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
300
|
+
Completed 200 OK in 152ms (Views: 137.8ms | ActiveRecord: 0.6ms)
|
|
301
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
302
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
303
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: EUTb4CcbHeq6q6BmqhHxLR96 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
304
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
305
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "EUTb4CcbHeq6q6BmqhHxLR96"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.552511"]]
|
|
306
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
307
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
308
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
|
|
309
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
310
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
311
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
312
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.2ms)
|
|
313
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
314
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
315
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
316
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
317
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
318
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
319
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
320
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
321
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
322
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.7ms)
|
|
323
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
324
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.7ms)
|
|
325
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (66.6ms)
|
|
326
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
327
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
328
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
329
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
330
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
331
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
332
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
333
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
334
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
335
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.1ms)
|
|
336
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
337
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
338
|
+
Completed 200 OK in 100ms (Views: 84.9ms | ActiveRecord: 0.5ms)
|
|
339
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
340
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
341
|
+
[36m Disk Storage (0.5ms) [0m[32mUploaded file to key: yiDXXQ9GkMUnaSpW4xNiMgG8 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
342
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
343
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "yiDXXQ9GkMUnaSpW4xNiMgG8"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.665681"]]
|
|
344
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
345
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
346
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
|
|
347
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
348
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
349
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
350
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
351
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
352
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
353
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
354
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
355
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
356
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
357
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
358
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
359
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
360
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.0ms)
|
|
361
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
|
|
362
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.1ms)
|
|
363
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (9.4ms)
|
|
364
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
365
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
366
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
367
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
|
|
368
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
369
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
370
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
371
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
372
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
373
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.5ms)
|
|
374
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
375
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
376
|
+
Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.5ms)
|
|
377
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
378
|
+
Started DELETE "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
379
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#destroy as HTML
|
|
380
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
381
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
382
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
383
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
384
|
+
[1m[36mActiveStorage::Attachment Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "active_storage_attachments" WHERE "active_storage_attachments"."blob_id" = ? LIMIT ?[0m [["blob_id", 1], ["LIMIT", 1]]
|
|
385
|
+
[1m[36mActiveStorage::Blob Destroy (0.1ms)[0m [1m[31mDELETE FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ?[0m [["id", 1]]
|
|
386
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
387
|
+
[1m[36mActiveStorage::Attachment Load (0.3ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = ? AND "active_storage_attachments"."record_type" = ? AND "active_storage_attachments"."name" = ? LIMIT ?[0m [["record_id", 1], ["record_type", "ActiveStorage::Blob"], ["name", "preview_image"], ["LIMIT", 1]]
|
|
388
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/blobs
|
|
389
|
+
Completed 302 Found in 47ms (ActiveRecord: 1.0ms)
|
|
390
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
391
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
|
|
392
|
+
Parameters: {"locale"=>"de"}
|
|
393
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
394
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
395
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
396
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (0.4ms)
|
|
397
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
398
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
399
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (2.4ms)
|
|
400
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
401
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
402
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.0ms)
|
|
403
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
404
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
405
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
406
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
407
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
408
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
409
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
410
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
411
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
412
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
|
|
413
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
414
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
415
|
+
Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.5ms)
|
|
416
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
417
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
418
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
419
|
+
Started GET "/de/backend/system/changelogs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
420
|
+
Processing by Cmor::System::ChangelogsController#index as HTML
|
|
421
|
+
Parameters: {"locale"=>"de"}
|
|
422
|
+
Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.0ms)
|
|
423
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
424
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
425
|
+
Started GET "/de/backend/system/changelogs/actioncable" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
|
|
426
|
+
Processing by Cmor::System::ChangelogsController#show as HTML
|
|
427
|
+
Parameters: {"locale"=>"de", "id"=>"actioncable"}
|
|
428
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
429
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.2ms)
|
|
430
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_show_table.html.haml (3.5ms)
|
|
431
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
432
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
433
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
434
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (4.1ms)
|
|
435
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_after_show_table.html.haml (276.7ms)
|
|
436
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.4ms)
|
|
437
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (322.1ms)
|
|
438
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
439
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
440
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.8ms)
|
|
441
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.9ms)
|
|
442
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
443
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
444
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
445
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
446
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
447
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.3ms)
|
|
448
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
449
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
450
|
+
Completed 200 OK in 402ms (Views: 379.8ms | ActiveRecord: 0.9ms)
|
|
451
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
452
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
453
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
454
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.315816"], ["created_at", "2020-01-28 17:11:15.315956"], ["updated_at", "2020-01-28 17:11:15.315956"]]
|
|
455
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
456
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
457
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.2ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.318876"], ["created_at", "2020-01-28 17:11:15.318938"], ["updated_at", "2020-01-28 17:11:15.318938"]]
|
|
458
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
459
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
460
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.1ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.321546"], ["created_at", "2020-01-28 17:11:15.321593"], ["updated_at", "2020-01-28 17:11:15.321593"]]
|
|
461
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
462
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
|
|
463
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
|
|
464
|
+
Parameters: {"locale"=>"de"}
|
|
465
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
466
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
467
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (3.8ms)
|
|
468
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (8.4ms)
|
|
469
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
470
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
471
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
472
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
473
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
474
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
475
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
476
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
477
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
478
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
479
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
480
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
481
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
482
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
483
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
484
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
485
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
486
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
487
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
488
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
489
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
490
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
491
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
492
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
493
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
494
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
495
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
496
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
497
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
498
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
499
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
500
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
501
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
502
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
503
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
504
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
505
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
506
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (30.4ms)
|
|
507
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
508
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.4ms)
|
|
509
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (128.7ms)
|
|
510
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
511
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
512
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
513
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
514
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
515
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
516
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
517
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
518
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
519
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.1ms)
|
|
520
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
521
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
522
|
+
Completed 200 OK in 198ms (Views: 182.0ms | ActiveRecord: 0.6ms)
|
|
523
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
524
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
525
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/new" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
|
|
526
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#new as HTML
|
|
527
|
+
Parameters: {"locale"=>"de"}
|
|
528
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application
|
|
529
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (3.8ms)
|
|
530
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (45.8ms)
|
|
531
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (3.1ms)
|
|
532
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_new_actions.html.haml (3.7ms)
|
|
533
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application (346.9ms)
|
|
534
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
535
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
536
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
537
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
|
|
538
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
539
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
540
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
541
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
542
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
543
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
|
|
544
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
545
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
546
|
+
Completed 200 OK in 395ms (Views: 362.9ms | ActiveRecord: 0.4ms)
|
|
547
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
548
|
+
Started POST "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
|
|
549
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#create as HTML
|
|
550
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"11", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"11", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"11", "locked_by"=>"", "queue"=>""}, "commit"=>"Hintergrundjob erstellen", "locale"=>"de"}
|
|
551
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
552
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
553
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "last_error", "run_at", "locked_at", "failed_at", "locked_by", "queue", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["handler", ""], ["last_error", ""], ["run_at", "2020-01-28 17:11:00"], ["locked_at", "2020-01-28 17:11:00"], ["failed_at", "2020-01-28 17:11:00"], ["locked_by", ""], ["queue", ""], ["created_at", "2020-01-28 17:11:15.963416"], ["updated_at", "2020-01-28 17:11:15.963416"]]
|
|
554
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
555
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
556
|
+
Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
|
|
557
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
558
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
559
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
560
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
561
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
562
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
563
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
564
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
565
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
566
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
567
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
568
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
569
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
570
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
571
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
572
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
573
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
574
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
575
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
576
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
577
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
|
|
578
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
|
|
579
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (6.3ms)
|
|
580
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (61.1ms)
|
|
581
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
582
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
583
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
584
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
585
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
586
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
587
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
588
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
589
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
590
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
|
|
591
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
592
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
593
|
+
Completed 200 OK in 91ms (Views: 76.0ms | ActiveRecord: 0.6ms)
|
|
594
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
595
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY "delayed_jobs"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
596
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
597
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
598
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
599
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.2ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.129623"], ["created_at", "2020-01-28 17:11:16.129682"], ["updated_at", "2020-01-28 17:11:16.129682"]]
|
|
600
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
601
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
602
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
603
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
604
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
605
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
606
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
607
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
608
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
609
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
610
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
611
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
612
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
613
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
614
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
615
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
616
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
617
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
618
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
619
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
620
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.5ms)
|
|
621
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
622
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.6ms)
|
|
623
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (12.1ms)
|
|
624
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
625
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
626
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
627
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
628
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
|
|
629
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
630
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
631
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
632
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
633
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.1ms)
|
|
634
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
635
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
636
|
+
Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 0.7ms)
|
|
637
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
638
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
639
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
640
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.4ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.177451"], ["created_at", "2020-01-28 17:11:16.177513"], ["updated_at", "2020-01-28 17:11:16.177513"]]
|
|
641
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
642
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1/edit" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
643
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#edit as HTML
|
|
644
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
645
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
646
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application
|
|
647
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (0.1ms)
|
|
648
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (30.5ms)
|
|
649
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (0.8ms)
|
|
650
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_edit_actions.html.haml (5.2ms)
|
|
651
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application (78.0ms)
|
|
652
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
653
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
654
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
655
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
656
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
657
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
658
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
659
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
660
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
661
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.1ms)
|
|
662
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
663
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
664
|
+
Completed 200 OK in 128ms (Views: 94.8ms | ActiveRecord: 0.5ms)
|
|
665
|
+
Started PATCH "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
666
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#update as HTML
|
|
667
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"handler", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"11", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"11", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"11", "locked_by"=>"", "queue"=>"different_queue"}, "commit"=>"Hintergrundjob aktualisieren", "locale"=>"de", "id"=>"1"}
|
|
668
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
669
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
670
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
671
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Update (0.2ms)[0m [1m[33mUPDATE "delayed_jobs" SET "last_error" = ?, "locked_by" = ?, "queue" = ?, "run_at" = ?, "locked_at" = ?, "failed_at" = ?, "updated_at" = ? WHERE "delayed_jobs"."id" = ?[0m [["last_error", ""], ["locked_by", ""], ["queue", "different_queue"], ["run_at", "2020-01-28 17:11:00"], ["locked_at", "2020-01-28 17:11:00"], ["failed_at", "2020-01-28 17:11:00"], ["updated_at", "2020-01-28 17:11:16.352935"], ["id", 1]]
|
|
672
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
673
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
674
|
+
Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
|
|
675
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
676
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
677
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
678
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
679
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
680
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
681
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
682
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
683
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
684
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
685
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
686
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
687
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
688
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
689
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
690
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
691
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
692
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
693
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
694
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
695
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.3ms)
|
|
696
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
|
|
697
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
|
|
698
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.5ms)
|
|
699
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
700
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
701
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
702
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
703
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
704
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
705
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
706
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
707
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
708
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
709
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
710
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
711
|
+
Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.4ms)
|
|
712
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
713
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
714
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
715
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
716
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.2ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.456692"], ["created_at", "2020-01-28 17:11:16.456747"], ["updated_at", "2020-01-28 17:11:16.456747"]]
|
|
717
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
718
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
719
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
720
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
721
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
722
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
723
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
724
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
|
|
725
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
726
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
727
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
728
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
729
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
730
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
731
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
732
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
733
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
734
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
735
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
736
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
737
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
|
|
738
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
739
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.6ms)
|
|
740
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.9ms)
|
|
741
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
742
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
743
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
744
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.6ms)
|
|
745
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
746
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
747
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
748
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
749
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
750
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
|
|
751
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
752
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
753
|
+
Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.5ms)
|
|
754
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
755
|
+
Started DELETE "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
756
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#destroy as HTML
|
|
757
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
758
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
759
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
760
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
761
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Destroy (0.1ms)[0m [1m[31mDELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ?[0m [["id", 1]]
|
|
762
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
763
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs
|
|
764
|
+
Completed 302 Found in 19ms (ActiveRecord: 0.4ms)
|
|
765
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
|
|
766
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
|
|
767
|
+
Parameters: {"locale"=>"de"}
|
|
768
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
769
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
770
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
771
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (0.6ms)
|
|
772
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (0.1ms)
|
|
773
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
774
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.0ms)
|
|
775
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
776
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.6ms)
|
|
777
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (8.0ms)
|
|
778
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
779
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
780
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
781
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
782
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
783
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
784
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
785
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
786
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
787
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.2ms)
|
|
788
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
789
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
790
|
+
Completed 200 OK in 40ms (Views: 37.3ms | ActiveRecord: 0.5ms)
|
|
791
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
792
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
793
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
794
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
795
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
796
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
797
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
798
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
799
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
800
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
801
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
802
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
803
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
804
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
805
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
806
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
807
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
808
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
809
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
810
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
811
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
812
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
813
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
814
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
815
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
816
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
817
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
818
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: dTnXwvBxb5q1sz4V9RoFEY9f (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
819
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
820
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
821
|
+
[36m Disk Storage (1.2ms) [0m[32mUploaded file to key: sZoX6LX7LPetJEHdVyYSnShV (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
822
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
823
|
+
[1m[36mPost Create (0.4ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:11:16.778490"], ["updated_at", "2020-01-28 17:11:16.778490"]]
|
|
824
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "sZoX6LX7LPetJEHdVyYSnShV"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:16.780606"]]
|
|
825
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:16.782549"]]
|
|
826
|
+
[1m[36mPost Update (0.2ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:11:16.783720"], ["id", 1]]
|
|
827
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
828
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) to Async(default) with arguments: #<GlobalID:0x005636d2258550 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
829
|
+
[1m[36mActiveStorage::Blob Load (1.7ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
830
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Performing ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) from Async(default) with arguments: #<GlobalID:0x005636d2255cb0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
831
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
832
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
833
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
834
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] [36m Disk Storage (7.2ms) [0m[34mDownloaded file from key: sZoX6LX7LPetJEHdVyYSnShV[0m
|
|
835
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Skipping image analysis because the mini_magick gem isn't installed
|
|
836
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
837
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] [1m[36mActiveStorage::Blob Update (0.2ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
838
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] [1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
839
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Performed ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) from Async(default) in 17.6ms
|
|
840
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
841
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
842
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
843
|
+
[36m Disk Storage (1.0ms) [0m[32mUploaded file to key: pNptiSgGcoegZMiaAvcETCth (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
844
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
845
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
846
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: C8G5cFjPsZN2Q9Ydx2CJ3dzQ (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
847
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
848
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "C8G5cFjPsZN2Q9Ydx2CJ3dzQ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:16.899674"]]
|
|
849
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
850
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
851
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
852
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
853
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
854
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
855
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
856
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
857
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
858
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
859
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.4ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.929600"], ["created_at", "2020-01-28 17:11:16.929812"], ["updated_at", "2020-01-28 17:11:16.929812"]]
|
|
860
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
861
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
862
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
863
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
864
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
865
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
866
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
867
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
868
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
869
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
870
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
871
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
872
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
|
873
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
874
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
875
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
876
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
877
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
878
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
879
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
880
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
881
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
882
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
883
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
884
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
885
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
886
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
887
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
888
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
889
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
890
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
891
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
892
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
893
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
894
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
895
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
896
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
897
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
898
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
899
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
900
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
901
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
902
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
903
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
904
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
905
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
906
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
907
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
908
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
909
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
910
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
911
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
912
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
913
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
914
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
915
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
916
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
917
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
918
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
919
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
920
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
921
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
922
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
923
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
924
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
925
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
926
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
927
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
928
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
929
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
930
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
931
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
932
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
933
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
934
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
935
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
936
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
937
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
938
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
939
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
940
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
941
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
942
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
943
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
944
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
945
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
946
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
947
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
948
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
949
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
950
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
951
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
952
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
953
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
954
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
955
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
956
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
957
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
958
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
959
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
960
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
961
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
962
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
963
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
964
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
965
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
966
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
967
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
968
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
969
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
970
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
971
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
972
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
973
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
974
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
975
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
976
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
977
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
978
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
979
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
980
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
981
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
982
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
983
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
984
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
985
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
986
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
987
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
988
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
989
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
990
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
991
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
992
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
993
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
994
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
995
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
996
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
997
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
998
|
+
[1m[36mPost Create (0.4ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:12.832601"], ["updated_at", "2020-01-28 17:15:12.832601"]]
|
|
999
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1000
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: d72AwmhJ3n4AE3yMtCBWLKzC (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1001
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1002
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "d72AwmhJ3n4AE3yMtCBWLKzC"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:12.979867"]]
|
|
1003
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1004
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1005
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:12.986830"]]
|
|
1006
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:12.988334"], ["id", 1]]
|
|
1007
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1008
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) to Async(default) with arguments: #<GlobalID:0x005599491e58d8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1009
|
+
[1m[36mActiveStorage::Blob Load (1.5ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1010
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1011
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Performing ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) from Async(default) with arguments: #<GlobalID:0x00559948f89620 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1012
|
+
[1m[36mPost Create (0.2ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:13.011516"], ["updated_at", "2020-01-28 17:15:13.011516"]]
|
|
1013
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1014
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: xxXPp1mpoasrBznSKYn4dBAn (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1015
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1016
|
+
[1m[36mActiveStorage::Blob Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "xxXPp1mpoasrBznSKYn4dBAn"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:13.017112"]]
|
|
1017
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1018
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1019
|
+
[1m[36mActiveStorage::Attachment Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 2], ["blob_id", 2], ["created_at", "2020-01-28 17:15:13.019615"]]
|
|
1020
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:13.020810"], ["id", 2]]
|
|
1021
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1022
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) to Async(default) with arguments: #<GlobalID:0x00559947f872e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
1023
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1024
|
+
[1m[36mPost Create (0.1ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:13.023742"], ["updated_at", "2020-01-28 17:15:13.023742"]]
|
|
1025
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1026
|
+
[1m[36mActiveStorage::Blob Load (0.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1027
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Performing ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) from Async(default) with arguments: #<GlobalID:0x0055994658b238 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
1028
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] [36m Disk Storage (3.7ms) [0m[34mDownloaded file from key: d72AwmhJ3n4AE3yMtCBWLKzC[0m
|
|
1029
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Skipping image analysis because the mini_magick gem isn't installed
|
|
1030
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1031
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
1032
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] [36m Disk Storage (8.7ms) [0m[34mDownloaded file from key: xxXPp1mpoasrBznSKYn4dBAn[0m
|
|
1033
|
+
[36m Disk Storage (10.1ms) [0m[32mUploaded file to key: JbJaAhVpr1V51SxJTyM3D2zF (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1034
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1035
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Skipping image analysis because the mini_magick gem isn't installed
|
|
1036
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Performed ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) from Async(default) in 34.92ms
|
|
1037
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1038
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "JbJaAhVpr1V51SxJTyM3D2zF"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:13.048608"]]
|
|
1039
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1040
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1041
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 2]]
|
|
1042
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1043
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Performed ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) from Async(default) in 18.99ms
|
|
1044
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1045
|
+
[1m[36mActiveStorage::Attachment Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 3], ["blob_id", 3], ["created_at", "2020-01-28 17:15:13.053612"]]
|
|
1046
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:13.054787"], ["id", 3]]
|
|
1047
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1048
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) to Async(default) with arguments: #<GlobalID:0x00559947b696e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
1049
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:15:13 +0100
|
|
1050
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
|
|
1051
|
+
Parameters: {"locale"=>"de"}
|
|
1052
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1053
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1054
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Performing ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) from Async(default) with arguments: #<GlobalID:0x00559948ef1348 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
1055
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (3.3ms)
|
|
1056
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] [36m Disk Storage (46.8ms) [0m[34mDownloaded file from key: JbJaAhVpr1V51SxJTyM3D2zF[0m
|
|
1057
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Skipping image analysis because the mini_magick gem isn't installed
|
|
1058
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1059
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 3]]
|
|
1060
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1061
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Performed ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) from Async(default) in 58.08ms
|
|
1062
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (3.1ms)
|
|
1063
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (10.8ms)
|
|
1064
|
+
[1m[36mActiveStorage::Attachment Load (0.2ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
1065
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.5ms)
|
|
1066
|
+
[1m[36mPost Load (0.2ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1067
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (9.0ms)
|
|
1068
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1069
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1070
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1071
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1072
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.1ms)
|
|
1073
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1074
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1075
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1076
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1077
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.1ms)
|
|
1078
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1079
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1080
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (48.7ms)
|
|
1081
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (2.2ms)
|
|
1082
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (3.1ms)
|
|
1083
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (308.6ms)
|
|
1084
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (2.3ms)
|
|
1085
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1086
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (19.1ms)
|
|
1087
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (6.1ms)
|
|
1088
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (3.5ms)
|
|
1089
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1090
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1091
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1092
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1093
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (49.4ms)
|
|
1094
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1095
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (5.2ms)
|
|
1096
|
+
Completed 200 OK in 1098ms (Views: 1054.2ms | ActiveRecord: 1.1ms)
|
|
1097
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
1098
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1099
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1100
|
+
[1m[36mPost Create (0.3ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:14.267044"], ["updated_at", "2020-01-28 17:15:14.267044"]]
|
|
1101
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1102
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: BvRwN2rrUPcdfd8n1gDqFawB (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1103
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1104
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "BvRwN2rrUPcdfd8n1gDqFawB"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.271589"]]
|
|
1105
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1106
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1107
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:14.274137"]]
|
|
1108
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:14.275381"], ["id", 1]]
|
|
1109
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1110
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) to Async(default) with arguments: #<GlobalID:0x007f17f450eac0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1111
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
|
|
1112
|
+
[1m[36mActiveStorage::Blob Load (4.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1113
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Performing ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) from Async(default) with arguments: #<GlobalID:0x0055994d24ede8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1114
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
|
|
1115
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] [36m Disk Storage (14.4ms) [0m[34mDownloaded file from key: BvRwN2rrUPcdfd8n1gDqFawB[0m
|
|
1116
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1117
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Skipping image analysis because the mini_magick gem isn't installed
|
|
1118
|
+
[1m[36mActiveStorage::Attachment Load (0.2ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1119
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1120
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1121
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] [1m[36mActiveStorage::Blob Update (0.2ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
1122
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1123
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Performed ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) from Async(default) in 70.53ms
|
|
1124
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1125
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (2.2ms)
|
|
1126
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (3.1ms)
|
|
1127
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1128
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1129
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1130
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1131
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (5.3ms)
|
|
1132
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.3ms)
|
|
1133
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1134
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (26.9ms)
|
|
1135
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (2.2ms)
|
|
1136
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (5.8ms)
|
|
1137
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (216.5ms)
|
|
1138
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1139
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1140
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1141
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1142
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1143
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1144
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1145
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1146
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1147
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
1148
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1149
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1150
|
+
Completed 200 OK in 265ms (Views: 232.5ms | ActiveRecord: 0.8ms)
|
|
1151
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1153
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1154
|
+
[1m[36mPost Create (0.3ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:14.584575"], ["updated_at", "2020-01-28 17:15:14.584575"]]
|
|
1155
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1156
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: kc6tSy4nscztYUiueCfAGegB (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1157
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1158
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "kc6tSy4nscztYUiueCfAGegB"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.612841"]]
|
|
1159
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1160
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1161
|
+
[1m[36mActiveStorage::Attachment Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:14.615262"]]
|
|
1162
|
+
[1m[36mPost Update (0.1ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:14.616429"], ["id", 1]]
|
|
1163
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1164
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) to Async(default) with arguments: #<GlobalID:0x0055994dcd9da8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1165
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
|
|
1166
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
|
|
1167
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1168
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1169
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1170
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1171
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Performing ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) from Async(default) with arguments: #<GlobalID:0x0055994d2207e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
1172
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1173
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1174
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
1175
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1176
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1177
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1178
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1179
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (1.4ms)
|
|
1180
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.2ms)
|
|
1181
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1182
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.5ms)
|
|
1183
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
|
|
1184
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.2ms)
|
|
1185
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (13.0ms)
|
|
1186
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1187
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1188
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1189
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1190
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1191
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1192
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1193
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1194
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1195
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.9ms)
|
|
1196
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1197
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1198
|
+
Completed 200 OK in 34ms (Views: 30.6ms | ActiveRecord: 0.9ms)
|
|
1199
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1200
|
+
Started DELETE "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
|
|
1201
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#destroy as HTML
|
|
1202
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] [36m Disk Storage (17.4ms) [0m[34mDownloaded file from key: kc6tSy4nscztYUiueCfAGegB[0m
|
|
1203
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1204
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Skipping image analysis because the mini_magick gem isn't installed
|
|
1205
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1206
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
1207
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1208
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] [1m[36mActiveStorage::Blob Update (0.1ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
1209
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1210
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Performed ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) from Async(default) in 63.28ms
|
|
1211
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1212
|
+
[1m[36mActiveStorage::Attachment Destroy (0.2ms)[0m [1m[31mDELETE FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ?[0m [["id", 1]]
|
|
1213
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1214
|
+
[1m[36mPost Update (0.2ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:14.691805"], ["id", 1]]
|
|
1215
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1216
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/attachments
|
|
1217
|
+
Completed 302 Found in 75ms (ActiveRecord: 0.8ms)
|
|
1218
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
|
|
1219
|
+
Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
|
|
1220
|
+
Parameters: {"locale"=>"de"}
|
|
1221
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
1222
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1223
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
1224
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (0.2ms)
|
|
1225
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
1226
|
+
[1m[36mActiveStorage::Attachment Load (0.1ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
1227
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (1.5ms)
|
|
1228
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.0ms)
|
|
1229
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
1230
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (5.1ms)
|
|
1231
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1232
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1233
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1234
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
1235
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1236
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1237
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1238
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1239
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1240
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
|
|
1241
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1242
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1243
|
+
Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.4ms)
|
|
1244
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1245
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1246
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1247
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: UFZpwtMcXFWg4DobzR39hofU (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1248
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1249
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "UFZpwtMcXFWg4DobzR39hofU"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.795125"]]
|
|
1250
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1251
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: V1afuALSJzpRpCifsnAeQWiE (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1252
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1253
|
+
[1m[36mActiveStorage::Blob Create (0.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "V1afuALSJzpRpCifsnAeQWiE"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.799699"]]
|
|
1254
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1255
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: mQL8JjXA8QsYTKkZcq7wH2er (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1256
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1257
|
+
[1m[36mActiveStorage::Blob Create (0.2ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "mQL8JjXA8QsYTKkZcq7wH2er"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.835196"]]
|
|
1258
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1259
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
|
|
1260
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
|
|
1261
|
+
Parameters: {"locale"=>"de"}
|
|
1262
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1263
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
1264
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (5.7ms)
|
|
1265
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
1266
|
+
[1m[36mActiveStorage::Blob Load (0.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
1267
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1268
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1269
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1270
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1271
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1272
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1273
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1274
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1275
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1276
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1277
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1278
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1279
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (36.9ms)
|
|
1280
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
1281
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
1282
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (106.0ms)
|
|
1283
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1284
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1285
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1286
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
1287
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1288
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1289
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1290
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1291
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1292
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
1293
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1294
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1295
|
+
Completed 200 OK in 162ms (Views: 147.3ms | ActiveRecord: 0.6ms)
|
|
1296
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1297
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1298
|
+
[36m Disk Storage (0.6ms) [0m[32mUploaded file to key: meso4MFkX8A2P1EJDurmGKhE (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1299
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1300
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "meso4MFkX8A2P1EJDurmGKhE"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:15.011239"]]
|
|
1301
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1302
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1303
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
|
|
1304
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1305
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1306
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1307
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1308
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
|
|
1309
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1310
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1311
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1312
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1313
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1314
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1315
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
1316
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1317
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (6.6ms)
|
|
1318
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
1319
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.2ms)
|
|
1320
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (65.1ms)
|
|
1321
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1322
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1323
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1324
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1325
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1326
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1327
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1328
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1329
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1330
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
1331
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1332
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1333
|
+
Completed 200 OK in 94ms (Views: 80.7ms | ActiveRecord: 0.4ms)
|
|
1334
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1335
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1336
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: JpBNdvYnjnikW4UqycMs6S56 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
1337
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1338
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "JpBNdvYnjnikW4UqycMs6S56"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:15.118336"]]
|
|
1339
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1340
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1341
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
|
|
1342
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1343
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1344
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1345
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1346
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.2ms)
|
|
1347
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1348
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1349
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1350
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1351
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1352
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1353
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1354
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1355
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.4ms)
|
|
1356
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
1357
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.4ms)
|
|
1358
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (10.0ms)
|
|
1359
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1360
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1361
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1362
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
|
|
1363
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1364
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1365
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1366
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1367
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1368
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.8ms)
|
|
1369
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1370
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
1371
|
+
Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.8ms)
|
|
1372
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1373
|
+
Started DELETE "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1374
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#destroy as HTML
|
|
1375
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1376
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1377
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
1378
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1379
|
+
[1m[36mActiveStorage::Attachment Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "active_storage_attachments" WHERE "active_storage_attachments"."blob_id" = ? LIMIT ?[0m [["blob_id", 1], ["LIMIT", 1]]
|
|
1380
|
+
[1m[36mActiveStorage::Blob Destroy (0.1ms)[0m [1m[31mDELETE FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ?[0m [["id", 1]]
|
|
1381
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1382
|
+
[1m[36mActiveStorage::Attachment Load (0.3ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = ? AND "active_storage_attachments"."record_type" = ? AND "active_storage_attachments"."name" = ? LIMIT ?[0m [["record_id", 1], ["record_type", "ActiveStorage::Blob"], ["name", "preview_image"], ["LIMIT", 1]]
|
|
1383
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/blobs
|
|
1384
|
+
Completed 302 Found in 52ms (ActiveRecord: 1.0ms)
|
|
1385
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1386
|
+
Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
|
|
1387
|
+
Parameters: {"locale"=>"de"}
|
|
1388
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
1389
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1390
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
1391
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (0.5ms)
|
|
1392
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
|
|
1393
|
+
[1m[36mActiveStorage::Blob Load (0.1ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
1394
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.0ms)
|
|
1395
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
1396
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
1397
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (9.0ms)
|
|
1398
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1399
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1400
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1401
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
1402
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1403
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1404
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1405
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1406
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1407
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
1408
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1409
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1410
|
+
Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.5ms)
|
|
1411
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1412
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1413
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1414
|
+
Started GET "/de/backend/system/changelogs" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1415
|
+
Processing by Cmor::System::ChangelogsController#index as HTML
|
|
1416
|
+
Parameters: {"locale"=>"de"}
|
|
1417
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1418
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.2ms)
|
|
1419
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_index_table.html.haml (14.1ms)
|
|
1420
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.2ms)
|
|
1421
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1422
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1423
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1424
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1425
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1426
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1427
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1428
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1429
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1430
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1431
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1432
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1433
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1434
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1435
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
1436
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1437
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1438
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1439
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1440
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1441
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1442
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1443
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1444
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1445
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1446
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1447
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1448
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1449
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1450
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1451
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1452
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1453
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1454
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1455
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1456
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1457
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1458
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1459
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1460
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1461
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (7.3ms)
|
|
1462
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1463
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1464
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1465
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1466
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1467
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1468
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1469
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1470
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1471
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1472
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1473
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1474
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1475
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1476
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1477
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1478
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1479
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1480
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1481
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1482
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1483
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1484
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1485
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1486
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1487
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1488
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1489
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1490
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1491
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1492
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1493
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1494
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1495
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1496
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1497
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1498
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1499
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1500
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1501
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1502
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1503
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1504
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1505
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1506
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1507
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1508
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1509
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1510
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
1511
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1512
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1513
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1514
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1515
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1516
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1517
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1518
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1519
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1520
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1521
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1522
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1523
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1524
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1525
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1526
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1527
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1528
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1529
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1530
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1531
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1532
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1533
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
1534
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1535
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1536
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1537
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1538
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1539
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1540
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
1541
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1542
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1543
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1544
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1545
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1546
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1547
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1548
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1549
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1550
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1551
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1552
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1553
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1554
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1555
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1556
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1557
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1558
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1559
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1560
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1561
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1562
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1563
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1564
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1565
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1566
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1567
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1568
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1569
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1570
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1571
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1572
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1573
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1574
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1575
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1576
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1577
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1578
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1579
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1580
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1581
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1582
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1583
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1584
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1585
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1586
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1587
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1588
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1589
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1590
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1591
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1592
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1593
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1594
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1595
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1596
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1597
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1598
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1599
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1600
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1601
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1602
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1603
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1604
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1605
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1606
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1607
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1608
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1609
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1610
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1611
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1612
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1613
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1614
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1615
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1616
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1617
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1618
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1619
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1620
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
1621
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1622
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1623
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1624
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1625
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1626
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1627
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1628
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1629
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1630
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1631
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1632
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1633
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1634
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1635
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
|
|
1636
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (198.2ms)
|
|
1637
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
1638
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
1639
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (278.8ms)
|
|
1640
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1641
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1642
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1643
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
1644
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1645
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1646
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1647
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1648
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1649
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.7ms)
|
|
1650
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1651
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1652
|
+
Completed 200 OK in 347ms (Views: 325.2ms | ActiveRecord: 0.4ms)
|
|
1653
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1654
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1655
|
+
Started GET "/de/backend/system/changelogs/actioncable" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
|
|
1656
|
+
Processing by Cmor::System::ChangelogsController#show as HTML
|
|
1657
|
+
Parameters: {"locale"=>"de", "id"=>"actioncable"}
|
|
1658
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1659
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1660
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_show_table.html.haml (3.4ms)
|
|
1661
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1662
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1663
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1664
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (2.5ms)
|
|
1665
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_after_show_table.html.haml (244.8ms)
|
|
1666
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.0ms)
|
|
1667
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (284.8ms)
|
|
1668
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
1669
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1670
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1671
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1672
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1673
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1674
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1675
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1676
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1677
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.7ms)
|
|
1678
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1679
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1680
|
+
Completed 200 OK in 325ms (Views: 303.3ms | ActiveRecord: 0.4ms)
|
|
1681
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1682
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1683
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1684
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.6ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.009885"], ["created_at", "2020-01-28 17:15:16.009987"], ["updated_at", "2020-01-28 17:15:16.009987"]]
|
|
1685
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1686
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1687
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.2ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.013532"], ["created_at", "2020-01-28 17:15:16.013599"], ["updated_at", "2020-01-28 17:15:16.013599"]]
|
|
1688
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1689
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1690
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.1ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.015552"], ["created_at", "2020-01-28 17:15:16.015591"], ["updated_at", "2020-01-28 17:15:16.015591"]]
|
|
1691
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1692
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1693
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
|
|
1694
|
+
Parameters: {"locale"=>"de"}
|
|
1695
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
1696
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
1697
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (3.1ms)
|
|
1698
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (6.8ms)
|
|
1699
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
1700
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1701
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1702
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1703
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1704
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1705
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1706
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1707
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1708
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1709
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1710
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1711
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1712
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1713
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1714
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1715
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1716
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1717
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1718
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1719
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1720
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1721
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1722
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1723
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1724
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1725
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1726
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1727
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1728
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1729
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1730
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1731
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1732
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1733
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1734
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1735
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1736
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (25.3ms)
|
|
1737
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
|
|
1738
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.5ms)
|
|
1739
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (131.0ms)
|
|
1740
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1741
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1742
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1743
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
1744
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1745
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1746
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1747
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1748
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1749
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.4ms)
|
|
1750
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1751
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1752
|
+
Completed 200 OK in 191ms (Views: 176.6ms | ActiveRecord: 0.7ms)
|
|
1753
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
1754
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1755
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/new" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1756
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#new as HTML
|
|
1757
|
+
Parameters: {"locale"=>"de"}
|
|
1758
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application
|
|
1759
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (3.7ms)
|
|
1760
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (44.8ms)
|
|
1761
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (3.4ms)
|
|
1762
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_new_actions.html.haml (3.9ms)
|
|
1763
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application (301.5ms)
|
|
1764
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1765
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1766
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1767
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
1768
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1769
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1770
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1771
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1772
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1773
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
|
|
1774
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1775
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1776
|
+
Completed 200 OK in 352ms (Views: 318.0ms | ActiveRecord: 0.3ms)
|
|
1777
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1778
|
+
Started POST "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1779
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#create as HTML
|
|
1780
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"15", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"15", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"15", "locked_by"=>"", "queue"=>""}, "commit"=>"Hintergrundjob erstellen", "locale"=>"de"}
|
|
1781
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
1782
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1783
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.4ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "last_error", "run_at", "locked_at", "failed_at", "locked_by", "queue", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["handler", ""], ["last_error", ""], ["run_at", "2020-01-28 17:15:00"], ["locked_at", "2020-01-28 17:15:00"], ["failed_at", "2020-01-28 17:15:00"], ["locked_by", ""], ["queue", ""], ["created_at", "2020-01-28 17:15:16.606616"], ["updated_at", "2020-01-28 17:15:16.606616"]]
|
|
1784
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1785
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
1786
|
+
Completed 302 Found in 67ms (ActiveRecord: 0.6ms)
|
|
1787
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1788
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
1789
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1790
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1791
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
1792
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1793
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1794
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.5ms)
|
|
1795
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1796
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1797
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1798
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1799
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1800
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1801
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
1802
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1803
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1804
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1805
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1806
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1807
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (8.5ms)
|
|
1808
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
1809
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (6.4ms)
|
|
1810
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (62.2ms)
|
|
1811
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1812
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1813
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1814
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1815
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1816
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1817
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1818
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1819
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1820
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
|
|
1821
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1822
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
|
|
1823
|
+
Completed 200 OK in 94ms (Views: 77.7ms | ActiveRecord: 0.5ms)
|
|
1824
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1825
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY "delayed_jobs"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
1826
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1827
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1828
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1829
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.776494"], ["created_at", "2020-01-28 17:15:16.776559"], ["updated_at", "2020-01-28 17:15:16.776559"]]
|
|
1830
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1831
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1832
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
1833
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1834
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1835
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1836
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1837
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
1838
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1839
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1840
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1841
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1842
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1843
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1844
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1845
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1846
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1847
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1848
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1849
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1850
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.5ms)
|
|
1851
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
1852
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
|
|
1853
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.8ms)
|
|
1854
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1855
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1856
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
|
|
1857
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1858
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1859
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1860
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1861
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1862
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1863
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.6ms)
|
|
1864
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1865
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1866
|
+
Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.6ms)
|
|
1867
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1868
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
1869
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1870
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.818623"], ["created_at", "2020-01-28 17:15:16.818691"], ["updated_at", "2020-01-28 17:15:16.818691"]]
|
|
1871
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1872
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1/edit" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1873
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#edit as HTML
|
|
1874
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1875
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1876
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application
|
|
1877
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (0.1ms)
|
|
1878
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (32.4ms)
|
|
1879
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (0.7ms)
|
|
1880
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_edit_actions.html.haml (5.2ms)
|
|
1881
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application (80.8ms)
|
|
1882
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
1883
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1884
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1885
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
1886
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1887
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1888
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1889
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1890
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1891
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
|
|
1892
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1893
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1894
|
+
Completed 200 OK in 133ms (Views: 97.5ms | ActiveRecord: 0.4ms)
|
|
1895
|
+
Started PATCH "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
|
|
1896
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#update as HTML
|
|
1897
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"handler", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"15", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"15", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"15", "locked_by"=>"", "queue"=>"different_queue"}, "commit"=>"Hintergrundjob aktualisieren", "locale"=>"de", "id"=>"1"}
|
|
1898
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1899
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
1900
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1901
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Update (0.2ms)[0m [1m[33mUPDATE "delayed_jobs" SET "last_error" = ?, "locked_by" = ?, "queue" = ?, "run_at" = ?, "locked_at" = ?, "failed_at" = ?, "updated_at" = ? WHERE "delayed_jobs"."id" = ?[0m [["last_error", ""], ["locked_by", ""], ["queue", "different_queue"], ["run_at", "2020-01-28 17:15:00"], ["locked_at", "2020-01-28 17:15:00"], ["failed_at", "2020-01-28 17:15:00"], ["updated_at", "2020-01-28 17:15:17.000091"], ["id", 1]]
|
|
1902
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1903
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
1904
|
+
Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
|
|
1905
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
|
|
1906
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
1907
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1908
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1909
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
1910
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1911
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1912
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
1913
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1914
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1915
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1916
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1917
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1918
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1919
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1920
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1921
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1922
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1923
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1924
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1925
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
|
|
1926
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
|
|
1927
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.4ms)
|
|
1928
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.7ms)
|
|
1929
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1930
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1931
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1932
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1933
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
1934
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1935
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1936
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1937
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1938
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
|
|
1939
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1940
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
1941
|
+
Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.4ms)
|
|
1942
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1943
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1944
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1945
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1946
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:17.104079"], ["created_at", "2020-01-28 17:15:17.104135"], ["updated_at", "2020-01-28 17:15:17.104135"]]
|
|
1947
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1948
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
|
|
1949
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
|
|
1950
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1951
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1952
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
1953
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
1954
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
|
|
1955
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1956
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1957
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1958
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1959
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1960
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1961
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1962
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1963
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1964
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1965
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
1966
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
1967
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.8ms)
|
|
1968
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
1969
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
|
|
1970
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (12.2ms)
|
|
1971
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
1972
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1973
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
1974
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
|
|
1975
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
1976
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1977
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
1978
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
1979
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
1980
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.7ms)
|
|
1981
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
1982
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
1983
|
+
Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.5ms)
|
|
1984
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
1985
|
+
Started DELETE "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
|
|
1986
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#destroy as HTML
|
|
1987
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
1988
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
1989
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
1990
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1991
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Destroy (0.1ms)[0m [1m[31mDELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ?[0m [["id", 1]]
|
|
1992
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1993
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs
|
|
1994
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
|
1995
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
|
|
1996
|
+
Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
|
|
1997
|
+
Parameters: {"locale"=>"de"}
|
|
1998
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
1999
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
2000
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
2001
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (0.3ms)
|
|
2002
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (0.1ms)
|
|
2003
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
2004
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.1ms)
|
|
2005
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
|
|
2006
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.6ms)
|
|
2007
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.8ms)
|
|
2008
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
2009
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
2010
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
|
|
2011
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
|
|
2012
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
2013
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
2014
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
2015
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
2016
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
|
|
2017
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
|
|
2018
|
+
Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
|
|
2019
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
2020
|
+
Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.4ms)
|
|
2021
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
2022
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2023
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2024
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2025
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2026
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2027
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2028
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2029
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2030
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2031
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2032
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2033
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2034
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2035
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2036
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2037
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2038
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2039
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2040
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2041
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2042
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
2043
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2044
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
2045
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2046
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2047
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2048
|
+
[36m Disk Storage (1.4ms) [0m[32mUploaded file to key: HTpmYShupi5EJNrradja6mVL (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
2049
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2050
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2051
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: mrpwPSd8RMydrLgNTDpdxX5k (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
2052
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2053
|
+
[1m[36mPost Create (0.6ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2020-01-28 17:15:17.396160"], ["updated_at", "2020-01-28 17:15:17.396160"]]
|
|
2054
|
+
[1m[36mActiveStorage::Blob Create (0.3ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "mrpwPSd8RMydrLgNTDpdxX5k"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:17.398509"]]
|
|
2055
|
+
[1m[36mActiveStorage::Attachment Create (0.9ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:17.400290"]]
|
|
2056
|
+
[1m[36mPost Update (0.6ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2020-01-28 17:15:17.403543"], ["id", 1]]
|
|
2057
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2058
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) to Async(default) with arguments: #<GlobalID:0x00559949f02e30 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
2059
|
+
[1m[36mActiveStorage::Blob Load (1.0ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
2060
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Performing ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) from Async(default) with arguments: #<GlobalID:0x00559949ee2450 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
2061
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
2062
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2063
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2064
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] [36m Disk Storage (11.3ms) [0m[34mDownloaded file from key: mrpwPSd8RMydrLgNTDpdxX5k[0m
|
|
2065
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
2066
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Skipping image analysis because the mini_magick gem isn't installed
|
|
2067
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2068
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2069
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] [1m[36mActiveStorage::Blob Update (0.2ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
2070
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2071
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
|
2072
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Performed ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) from Async(default) in 78.18ms
|
|
2073
|
+
[36m Disk Storage (0.7ms) [0m[32mUploaded file to key: hrk7FyAW9UPTARPBoaLC5S6R (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
2074
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2075
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2076
|
+
[36m Disk Storage (1.4ms) [0m[32mUploaded file to key: zetP27EpeZ3wJrz3rrqzGnGX (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
2077
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2078
|
+
[1m[36mActiveStorage::Blob Create (0.5ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "zetP27EpeZ3wJrz3rrqzGnGX"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:17.504967"]]
|
|
2079
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2080
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
2081
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2082
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
2083
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2084
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2085
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2086
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2087
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2088
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2089
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.3ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2020-01-28 17:15:17.545756"], ["created_at", "2020-01-28 17:15:17.545836"], ["updated_at", "2020-01-28 17:15:17.545836"]]
|
|
2090
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2091
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2092
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2093
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2094
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2095
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2096
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2097
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2098
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2099
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2100
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2101
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2102
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2103
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2104
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2105
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
2106
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2107
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2108
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2109
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2110
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2111
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2112
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2113
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2114
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2115
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2116
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2117
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2118
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2119
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2121
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2122
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2123
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2124
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2125
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2126
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2127
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2128
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2129
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2130
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2131
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2132
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2133
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2134
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2135
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2136
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2137
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2138
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2139
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2140
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2141
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2142
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2143
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2144
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2145
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2146
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2147
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2148
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2149
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2150
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2151
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2153
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2154
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2155
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2156
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2157
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2158
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2159
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2160
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2161
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2162
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2163
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2164
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2165
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2166
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2167
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2168
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2169
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2170
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2171
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2172
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2173
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2174
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2175
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2176
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2177
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2178
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2179
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2180
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2181
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2182
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2183
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
2184
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2185
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2186
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2187
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2188
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2189
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2190
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2191
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2192
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2193
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2194
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2195
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2196
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2197
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2198
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2199
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2200
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2201
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2202
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2203
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2204
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2205
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2206
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2207
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2209
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2210
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2211
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
2212
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2213
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2214
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2215
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2216
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2217
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2218
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2219
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2220
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2221
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2222
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2223
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
2224
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2225
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|