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

Fixes found while testing 1.5.54 build #1070

Merged
merged 3 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion unskript-ctl/unskript_ctl_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def run_main(self, **kwargs):
else:
output_dir = os.path.join(UNSKRIPT_EXECUTION_DIR, self.uglobals.get('exec_id'))

failed_objects_file = os.path.join(UNSKRIPT_EXECUTION_DIR, self.uglobals.get('exec_id')) + '_output.txt'
failed_objects_file = os.path.join(output_dir, self.uglobals.get('exec_id')) + '_output.txt'
diag_args = [
'--yaml-file',
YAML_CONFIG_FILE,
Expand Down
2 changes: 1 addition & 1 deletion unskript-ctl/unskript_upload_results_to_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def __init__(self):
aws_access_key_id = os.getenv('LIGHTBEAM_AWS_ACCESS_KEY_ID')
aws_secret_access_key = os.getenv('LIGHTBEAM_AWS_SECRET_ACCESS_KEY')
self.bucket_name = 'lightbeam-reports'
self.ts = "TS"
now = datetime.now()
rfc3339_timestamp = now.isoformat() + 'Z'
self.ts = rfc3339_timestamp
year = now.strftime("%Y")
month = now.strftime("%m")
day = now.strftime("%d")
Expand Down
Loading