Skip to content

Commit

Permalink
Append "UTC" to timestamps in html
Browse files Browse the repository at this point in the history
They've always been UTC.
  • Loading branch information
rwstauner committed May 9, 2024
1 parent 271437b commit d07f503
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 d07f503

Please sign in to comment.