Skip to content

Instantly share code, notes, and snippets.

@jetsgit
Created July 6, 2017 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jetsgit/5eab7dfd49896a271021caa3567e7385 to your computer and use it in GitHub Desktop.
Save jetsgit/5eab7dfd49896a271021caa3567e7385 to your computer and use it in GitHub Desktop.
Webrick Output
Started GET "/admin/signup" for ::1 at 2017-07-06 11:33:16 -0700
ActiveRecord::SchemaMigration Load (2.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by Alchemy::Admin::UsersController#signup as HTML
Alchemy::Site Load (24.7ms) SELECT "alchemy_sites".* FROM "alchemy_sites" WHERE "alchemy_sites"."id" = $1 LIMIT 1 [["id", 1]]
Alchemy::Language Load (29.0ms) SELECT "alchemy_languages".* FROM "alchemy_languages" WHERE "alchemy_languages"."site_id" = $1 AND "alchemy_languages"."id" = $2 LIMIT 1 [["site_id", 1], ["id", 1]]
(31.1ms) SELECT COUNT(*) FROM "alchemy_users"
CACHE (0.0ms) SELECT COUNT(*) FROM "alchemy_users"
Redirected to http://localhost:3000/admin/dashboard
Completed 302 Found in 426ms (ActiveRecord: 105.0ms)
Started GET "/admin/dashboard" for ::1 at 2017-07-06 11:33:17 -0700
Processing by Alchemy::Admin::DashboardController#index as HTML
Alchemy::Site Load (0.2ms) SELECT "alchemy_sites".* FROM "alchemy_sites" WHERE "alchemy_sites"."id" = $1 LIMIT 1 [["id", 1]]
Alchemy::Language Load (0.2ms) SELECT "alchemy_languages".* FROM "alchemy_languages" WHERE "alchemy_languages"."site_id" = $1 AND "alchemy_languages"."id" = $2 LIMIT 1 [["site_id", 1], ["id", 1]]
(0.2ms) SELECT COUNT(*) FROM "alchemy_users"
/!\ Failed to permit index on :alchemy_admin_dashboard for:
nil
Redirected to http://localhost:3000/admin/login
Completed 302 Found in 11ms (ActiveRecord: 0.7ms)
Started GET "/admin/login" for ::1 at 2017-07-06 11:33:17 -0700
Processing by Alchemy::UserSessionsController#new as HTML
Alchemy::Site Load (0.2ms) SELECT "alchemy_sites".* FROM "alchemy_sites" WHERE "alchemy_sites"."host" = $1 LIMIT 1 [["host", "localhost"]]
Alchemy::Site Load (0.1ms) SELECT "alchemy_sites".* FROM "alchemy_sites"
Alchemy::Site Load (0.3ms) SELECT "alchemy_sites".* FROM "alchemy_sites" ORDER BY "alchemy_sites"."id" ASC LIMIT 1
Alchemy::Language Load (0.2ms) SELECT "alchemy_languages".* FROM "alchemy_languages" WHERE "alchemy_languages"."site_id" = $1 AND "alchemy_languages"."id" = $2 LIMIT 1 [["site_id", 1], ["id", 1]]
(0.2ms) SELECT COUNT(*) FROM "alchemy_users"
Rendered /Users/jet/.rvm/gems/ruby-2.2.2@PugetSoundSalmon/bundler/gems/alchemy-devise-8c83077eadf4/app/views/alchemy/user_sessions/new.html.erb within layouts/alchemy/admin (4167.0ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_routes.html.erb (1.4ms)
CACHE (0.0ms) SELECT COUNT(*) FROM "alchemy_users"
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (3.8ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.1ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.3ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.1ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.1ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.1ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb (0.1ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_flash.html.erb (0.5ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/partials/_flash_notices.html.erb (9.7ms)
Rendered /Users/jet/Rails_Projects/alchemy_cms/app/views/alchemy/admin/uploader/_setup.html.erb (0.4ms)
Completed 200 OK in 5049ms (Views: 5031.0ms | ActiveRecord: 1.4ms)
@joeczucha
Copy link

Did you ever work out what was causing this? I'm getting the same thing after updating Alchemy :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment