Ethsim2
(Ethan )
5월 23, 2026, 2:24오후
4
로그에는 두 가지 다른 문제가 있는 것 같습니다.
ActionView::Template::Error / Propshaft 관련, 누락된 chunk...js 자산에 대한 항목은 “모두 업데이트” 직후에 발생했고 새 탭에서는 정상 작동했던 현상을 설명할 수 있을 것입니다. 이는 업데이트/재빌드 이후 더 이상 존재하지 않는 자산 파일명을 로드하려는 오래된 탭의 문제로 보입니다.
별도의 항목:
NameError (uninitialized constant ReactionsSerializerHelpers) app/serializers/post_stream_serializer_mixin.rb:31:in 'PostStreamSerializerMixin#post_stream'
은 제가 여기서 보고한 번들링된 discourse-reactions 문제처럼 보입니다:
내 Discourse 버전은 2026.5.0-latest.1입니다 (fbcbdc46d8 )
토픽 게시물을 로드할 때 반복적으로 /logs 오류가 발생하고 있습니다. 오류는 게시물 스트림을 직렬화하는 동안 번들된 discourse-reactions 플러그인에서 발생하는 것으로 보입니다.
사이트는 해당 메시지가 8회 보고되었다고 보고합니다.
아래 비교 범위를 확인해 보았지만, 실패하는 백엔드 코드 경로와 관련이 없어 보이기 때문에 별도로 보고합니다:
/logs에서 발생한 오류 메시지
/logs에서 발생한 백트레이스
현재 일어나고 있는 것으로 보이는 것
이 오류는 TopicsController#posts가 게시물 스트림에 대한 JSON을 렌더링할 때 발생합니다.
백트레이스는 다음으로 가리킵니다:
plugins/discourse-reactions/lib/discourse_reactions/posts_reaction_loader.rb
그리고 다음으로:
plugins/d…
또한 여기에서 PR을 열었습니다:
main ← Ethsim12:fix-reactions-serializer-helpers-nameerror
merged 05:04AM - 26 May 26 UTC
Tests run:
bundle exec rubocop plugins/discourse-reactions/plugin.rb plugins/… discourse-reactions/lib/discourse_reactions/reactions_serializer_helpers.rb
ruby -c plugins/discourse-reactions/plugin.rb
ruby -c plugins/discourse-reactions/lib/discourse_reactions/reactions_serializer_helpers.rb
LOAD_PLUGINS=1 bundle exec rspec plugins/discourse-reactions/spec --exclude-pattern "plugins/discourse-reactions/spec/system/**/*_spec.rb"
Result: 183 examples, 0 failures.
I also attempted the targeted system spec locally. After installing Playwright/Chromium dependencies, the browser opened a blank page and the app did not mount (`#main.ember-application` was not found), so I treated that as a local Codespaces system-test environment issue and left full system coverage to CI.
따라서 Propshaft 자산 오류는 오래된 탭/업데이트로 인한 결과일 가능성이 높다고 보고, ReactionsSerializerHelpers 오류는 별도의 백엔드 리액션 플러그인 문제로 취급하겠습니다.