mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
chore: enable exhaustruct linter for database param structs (#9995)
This commit is contained in:
@ -273,7 +273,12 @@ func unhangJob(ctx context.Context, log slog.Logger, db database.Store, pub pubs
|
||||
|
||||
// Insert the messages into the build log.
|
||||
insertParams := database.InsertProvisionerJobLogsParams{
|
||||
JobID: job.ID,
|
||||
JobID: job.ID,
|
||||
CreatedAt: nil,
|
||||
Source: nil,
|
||||
Level: nil,
|
||||
Stage: nil,
|
||||
Output: nil,
|
||||
}
|
||||
now := dbtime.Now()
|
||||
for i, msg := range HungJobLogMessages {
|
||||
|
Reference in New Issue
Block a user