(ctx context.Context, arg database.UpdateChatACLByIDParams)
| 4763 | } |
| 4764 | |
| 4765 | func (m queryMetricsStore) UpdateChatACLByID(ctx context.Context, arg database.UpdateChatACLByIDParams) error { |
| 4766 | start := time.Now() |
| 4767 | r0 := m.s.UpdateChatACLByID(ctx, arg) |
| 4768 | m.queryLatencies.WithLabelValues("UpdateChatACLByID").Observe(time.Since(start).Seconds()) |
| 4769 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "UpdateChatACLByID").Inc() |
| 4770 | return r0 |
| 4771 | } |
| 4772 | |
| 4773 | func (m queryMetricsStore) UpdateChatBuildAgentBinding(ctx context.Context, arg database.UpdateChatBuildAgentBindingParams) (database.Chat, error) { |
| 4774 | start := time.Now() |
nothing calls this directly
no test coverage detected