You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: The logging facility uses vanilla ActiveRecord for logging during test runs, which blocks while it does so. This interferes with our ability to maximize concurrent throughput while logging is enabled.
Solution: Use a non-blocking API for logging during test runs.
Workaround: Turn off response logging when running your tests. This is already the default in production, since response logging should only be used when developing tests, not running them.
The text was updated successfully, but these errors were encountered:
Problem: The logging facility uses vanilla ActiveRecord for logging during test runs, which blocks while it does so. This interferes with our ability to maximize concurrent throughput while logging is enabled.
Solution: Use a non-blocking API for logging during test runs.
Workaround: Turn off response logging when running your tests. This is already the default in production, since response logging should only be used when developing tests, not running them.
The text was updated successfully, but these errors were encountered: