Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: ctx
  • Loading branch information
mtojek committed Nov 23, 2023
commit 57977d8bb439ec071ff009496a26be2c1c2e5f0e
2 changes: 1 addition & 1 deletion coderd/database/dbmem/dbmem.go
Original file line number Diff line number Diff line change
Expand Up @@ -1592,7 +1592,7 @@ func (q *FakeQuerier) GetDeploymentWorkspaceStats(ctx context.Context) (database
return stat, nil
}

func (q *FakeQuerier) GetDismissedHealthchecks(ctx context.Context) (string, error) {
func (q *FakeQuerier) GetDismissedHealthchecks(_ context.Context) (string, error) {
q.mutex.RLock()
defer q.mutex.RUnlock()

Expand Down