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

Avoid booting Rails to generate timestamp #152

Merged
merged 3 commits into from
Mar 24, 2025

Conversation

rzane
Copy link
Contributor

@rzane rzane commented Mar 24, 2025

Summary

The test_track:generate_build_timestamp task currently depends on the Rails :environment task. Because this task just shells out to the CLI, this dependency really shouldn't be necessary and can add a significant overhead for applications that don't rely on the Rails environment to precompile assets.

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.

Thanks for contributing to TestTrack!

/domain @Betterment/test_track_core
/platform @Betterment/test_track_core

@@ -11,7 +11,9 @@ namespace :test_track do
end

desc 'Generates build timestamp for fetching point-in-time split registries'
task generate_build_timestamp: :environment do
task :generate_build_timestamp do # rubocop:disable Rails/RakeEnvironment
require_relative '../../app/models/testtrack_cli'
Copy link
Member

Choose a reason for hiding this comment

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

it's small potatoes, but i'm wondering if we should move this class to lib since it's funky to require files that are in the app directory

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Agreed 👍

samandmoore
samandmoore previously approved these changes Mar 24, 2025
Copy link
Member

@samandmoore samandmoore left a comment

Choose a reason for hiding this comment

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

domainlgtm

just wanna move that file

@rzane rzane force-pushed the rzane/skip-rails-env branch from e53714e to 3b10a82 Compare March 24, 2025 17:59
@rzane rzane requested a review from samandmoore March 24, 2025 18:01
Copy link
Member

@samandmoore samandmoore left a comment

Choose a reason for hiding this comment

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

domainlgtm platformlgtm

@rzane rzane merged commit f7a91b2 into Betterment:master Mar 24, 2025
8 checks passed
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.

2 participants