mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
feat: add provisioning timings to understand slow build times (#14274)
This commit is contained in:
@ -9,6 +9,10 @@ func Now() time.Time {
|
||||
|
||||
// Time returns a time compatible with Postgres. Postgres only stores dates with
|
||||
// microsecond precision.
|
||||
// FIXME(dannyk): refactor all calls to Time() to expect the input time to be modified to UTC; there are currently a
|
||||
//
|
||||
// few calls whose behavior would change subtly.
|
||||
// See https://github.com/coder/coder/pull/14274#discussion_r1718427461
|
||||
func Time(t time.Time) time.Time {
|
||||
return t.Round(time.Microsecond)
|
||||
}
|
||||
|
Reference in New Issue
Block a user