0

最近在更改任何文件后使用 bin/dev 启动应用程序后使用 ruby​​ 3.0.3 设置了新的 Rails 7.0 项目,即使添加空格也会导致发生此错误,以下是获取的日志

19:41:24 web.1  | ArgumentError (wrong number of arguments (given 2, expected 5)):
19:41:24 web.1  |   
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/instrumenter.rb:62:in `initialize'
19:41:24 web.1  | actionpack (7.0.0) lib/action_dispatch/middleware/server_timing.rb:16:in `new'
19:41:24 web.1  | actionpack (7.0.0) lib/action_dispatch/middleware/server_timing.rb:16:in `block in call'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:225:in `publish'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:80:in `block in publish'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:91:in `block in iterate_guarding_exceptions'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:90:in `each'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:90:in `iterate_guarding_exceptions'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications/fanout.rb:80:in `publish'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/notifications.rb:197:in `publish'
19:41:24 web.1  | activeadmin (12ea37a38525) lib/active_admin/application.rb:115:in `load!'
19:41:24 web.1  | activeadmin (12ea37a38525) lib/active_admin/application.rb:228:in `block (2 levels) in attach_reloader'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:445:in `instance_exec'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:445:in `block in make_lambda'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:687:in `block (2 levels) in default_terminator'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:686:in `catch'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:686:in `block in default_terminator'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:200:in `block in halting'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:595:in `block in invoke_before'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:595:in `each'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:595:in `invoke_before'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:106:in `run_callbacks'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/reloader.rb:88:in `prepare!'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/reloader.rb:47:in `block in <class:Reloader>'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:445:in `instance_exec'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:445:in `block in make_lambda'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:271:in `block in simple'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:599:in `block in invoke_after'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:599:in `each'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:599:in `invoke_after'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/callbacks.rb:108:in `run_callbacks'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/execution_wrapper.rb:133:in `run'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/execution_wrapper.rb:129:in `run!'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/reloader.rb:114:in `run!'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/execution_wrapper.rb:74:in `block in run!'
19:41:24 web.1  | <internal:kernel>:90:in `tap'
19:41:24 web.1  | activesupport (7.0.0) lib/active_support/execution_wrapper.rb:71:in `run!'
4

2 回答 2

2

尝试在没有 Active Admin 的情况下创建您的项目。它似乎还不支持 Rails 7。https://github.com/activeadmin/activeadmin/issues/7196

于 2021-12-24T05:07:43.470 回答
1

作为临时解决方案,您可以server_timingconfig/environments/development.rb中禁用:

   # Enable server timing
-  config.server_timing = true
+  # config.server_timing = true

请参阅https://github.com/activeadmin/activeadmin/issues/7196#issuecomment-1002929616


感谢@stmpjmpr 的原始答案。只是想提供一些增强的答案。

于 2022-01-01T19:22:59.920 回答