-
Notifications
You must be signed in to change notification settings - Fork 16
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
Reminders store journey #3436
Reminders store journey #3436
Conversation
f557f8c
to
dd565f0
Compare
around do |example| | ||
original_stdout = $stdout | ||
original_stderr = $stderr | ||
|
||
$stdout = File.open(File::NULL, "w") | ||
$stderr = File.open(File::NULL, "w") | ||
|
||
example.run | ||
|
||
$stdout = original_stdout | ||
$stderr = original_stderr | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i want to slow tidy stdout when rspec runs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably just delete this spec and the rake task as it seems to be a one off task https://dfedigital.atlassian.net.mcas.ms/browse/CAPT-1877
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks good, just left one comment about the migration that might need looking at, if not LMK and I'm happy to approve.
The other comment isn't a blocker
around do |example| | ||
original_stdout = $stdout | ||
original_stderr = $stderr | ||
|
||
$stdout = File.open(File::NULL, "w") | ||
$stderr = File.open(File::NULL, "w") | ||
|
||
example.run | ||
|
||
$stdout = original_stdout | ||
$stderr = original_stderr | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably just delete this spec and the rake task as it seems to be a one off task https://dfedigital.atlassian.net.mcas.ms/browse/CAPT-1877
dd565f0
to
a2e544b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍
- this is still currently limited to additional payments - there is guard for the above - but can be extended allow for other journeys - this change is based on PR #3175
e4c161e
to
1c66fb9
Compare
- as this seems to conflict with active job serialisation
Context