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
- What I did
Two bugs were found related to this feature. This PR included fixes for this.
1. non-default since argument is not being applied.
Happening because subprocess_exec(["date", "--date='{}'".format(since_cfg)]) is failing. Replacing this with subprocess_exec(["date", "--date={}".format(since_cfg)]) solved the problem.
2. core_cleanup is not working because of the unnecessary recent_file_creation check.
- How I did it
Remove '' from date
- How to verify it
Run manual test flow which found the issue
Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
0 commit comments