Étienne Gagnon
Étienne Gagnon
fix check_for_lockup not defined during rails init. I've encountered this issue after an a upgrade from rails 4 to rails 5.
The following line quickly trigger huge memory consumption on larger networks: https://github.com/mt-mods/technic/blob/master/technic/machines/network.lua#L596C7-L596C7 ```lua vm:read_from_map(pos, pos) ``` In my setup, the calls stack up to 10-15GiB of allocated memory before the...
Ensure the inline tags are processed if CSP headers are present and a nonce token is generated.
The way the CSS and JS is rendered in the layout is currently problematic in a development environnement. https://github.com/interdiscipline/lockup/blob/72624656305e9c5f37aabd713ea8dfdab372f3d6/app/views/layouts/lockup/application.html.erb#L9-L14 Rails assume the content of the `html.erb` files will actually be...
Relevant issue: https://github.com/interdiscipline/lockup/issues/78 In a development environment, Rails inject HTML comments denoting the start and end of partials. This behavior break the content of the inline CSS/JS since the comments...
I'd like to suggest this change to address this issue: https://github.com/interdiscipline/lockup/issues/77 Override the lockup check method to do nothing in the Rails health controller. According to my test, using `skip_before_action`...
Deployments depending on a 200 response from Rails::HealthController to complete fail since a 302 is returned instead. This internal controller was introduced in rails 7.1, and is currently part of...