-
Notifications
You must be signed in to change notification settings - Fork 71
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
空の/buzzアクセス時の500エラーを修正 #6754
空の/buzzアクセス時の500エラーを修正 #6754
Conversation
app/controllers/buzz_controller.rb
Outdated
@@ -23,6 +23,7 @@ def update | |||
|
|||
def set_buzz | |||
@buzz = Buzz.first | |||
@buzz ||= Buzz.create(body: 'test') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
testという文字列が本番環境で出てくるということなのでこれは問題があると思います。
seedとdata-migrationに適切な初期データを入れるといいと思います。
適切な初期データは @machida さんに聞いてみてください。
@djkazunoko @komagata デザインを調整して、初期データも変更しましたー |
緊急の対応として本番DBを直接いじって修正しておきました。 それとは別にこちらのPRは進めていただければと思います〜。 |
了解ですー👍
|
@djkazunoko rubocop が通らないみたいで CI が取っていない状況です。こちら見ていただきたいですー |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させて頂きました。OKです〜🙆♂️
Issue
/buzz
にアクセスすると500: Internal Server Error
が表示される #6753