Skip to content

Commit

Permalink
Merge pull request #249 from Shopify/rwstauner/timezone
Browse files Browse the repository at this point in the history
Append "UTC" to timestamps in html
  • Loading branch information
rwstauner committed May 20, 2024
2 parents 5d78416 + d07f503 commit b20615e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion continuous_reporting/generate_and_upload_reports.rb
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def basic_report_filenames(report_name, ts, prefix: "#{BUILT_REPORTS_ROOT}/_incl

year, month, day, tm = ts.split("-")
date_str = "#{year}-#{month}-#{day}"
time_str = "#{tm[0..1]}:#{tm[2..3]}:#{tm[4..5]}"
time_str = "#{tm[0..1]}:#{tm[2..3]}:#{tm[4..5]} UTC"

bench_data = {
"layout" => "benchmark_details",
Expand Down

0 comments on commit b20615e

Please sign in to comment.