(duration time.Duration)
| 1469 | } |
| 1470 | |
| 1471 | func durationAsString(duration time.Duration) string { |
| 1472 | return strconv.FormatFloat(duration.Seconds(), 'f', 3, 64) + " seconds" |
| 1473 | } |
| 1474 | |
| 1475 | func sqliteJobInsertFastManyJobsParam(jobs []*riverdriver.JobInsertFastParams, uniqueNonce string) ([]byte, error) { |
| 1476 | jobsParam := make([]map[string]any, len(jobs)) |
no outgoing calls
searching dependent graphs…