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
{{ message }}
This repository was archived by the owner on Jul 13, 2023. It is now read-only.
On resizing uploaded images Paperclip creates a lot of Tempfiles (e.g. 6 styles = 13 Tempfiles) which are then not explicitly unlinked. On most Ruby implementations this is OK since the actual files are deleted when the Tempfiles instances are garbage collected. This is a problem though with JRuby since version 1.7.4 in which the behavior is changed so that files corresponding to Tempfiles are only deleted on process exit. Because of this our app started filling up /tmp since the upgrade to JRuby 1.7.4.