Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Tempfile.create #31099

Merged
merged 2 commits into from
Nov 9, 2017
Merged

Use Tempfile.create #31099

merged 2 commits into from
Nov 9, 2017

Conversation

nobu
Copy link
Contributor

@nobu nobu commented Nov 9, 2017

Instead of Dir::Tmpname.make_tmpname, an internal method which does not guarantee uniqueness, use Tempfile.create.

Summary

Provide a general description of the code changes in your pull
request... were there any bugs you had fixed? If so, mention them. If
these bugs have open GitHub issues, be sure to tag them here as well,
to keep the conversation linked together.

Other Information

If there's anything else that's important and relevant to your pull
request, mention that information here. This could include
benchmarks, or other information.

If you are updating any of the CHANGELOG files or are asked to update the
CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the file.

Finally, if your pull request affects documentation or any non-code
changes, guidelines for those changes are available
here

Thanks for contributing to Rails!

Instead of `Dir::Tmpname.make_tmpname`, an internal method which does not guarantee uniqueness, use `Tempfile.create`.
@rails-bot
Copy link

Thanks for the pull request, and welcome! The Rails team is excited to review your changes, and you should hear from @rafaelfranca (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

This repository is being automatically checked for code quality issues using Code Climate. You can see results for this analysis in the PR status below. Newly introduced issues should be fixed before a Pull Request is considered ready to review.

Please see the contribution instructions for more information.

@kamipo
Copy link
Member

kamipo commented Nov 9, 2017

Previously @cache_path is a directory path generated by File.join ..., but Tempfile.create will create actual temp file, seems not compatible.

@@ -98,7 +98,7 @@ def setup

@old_logger = ActionController::Base.logger

@cache_path = File.join Dir.tmpdir, Dir::Tmpname.make_tmpname("tmp", "cache")
@cache_path = Tempfile.create(%w"tmp cache", Dir.tmpdir)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems should be here:

@cache_path = Tempfile.create(%w"tmp cache", Dir.tmpdir).path
FileUtils.rm(@cache_path)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the info.
Then it should use Dir.mktmpdir.

As `@cache_path` is expected to be a directory name, use `Dir.mktmpdir`.
And omit unnecessary `Dir.tmpdir`.
@rafaelfranca rafaelfranca merged commit 2d5700b into rails:master Nov 9, 2017
rafaelfranca added a commit that referenced this pull request Nov 9, 2017
@rafaelfranca
Copy link
Member

Thanks nobu. Merged

@yahonda
Copy link
Member

yahonda commented Dec 19, 2017

@rafaelfranca Would you backport this change to 5-1-stable to address NoMethodError: undefined method make_tmpname' for Dir::Tmpname:Module` ?

https://travis-ci.org/rails/rails/jobs/318406875

kamipo pushed a commit that referenced this pull request Dec 20, 2017
@yahonda
Copy link
Member

yahonda commented Dec 20, 2017

Thanks for the backport.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants