Skip to content

Prevent InvalidAuthenticityToken & Infinite Loop #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/controllers/rake_ui/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
module RakeUi
class ApplicationController < ActionController::Base
before_action :black_hole_production
skip_before_action :verify_authenticity_token

private

Expand Down
4 changes: 0 additions & 4 deletions app/models/rake_ui/rake_task_log.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ def log_file_name
super || parsed_file_contents[:log_file_name]
end

def log_file_full_path
super || parsed_file_contents[:log_file_full_path]
end

def rake_command_with_logging
"#{rake_command} 2>&1 >> #{log_file_full_path}"
end
Expand Down