From 478f42f8a9f070cef9e8c0b81dc7bd4c24bacde8 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 15 Nov 2024 23:48:35 +0100 Subject: chore(tfstated): use a struct{} as context.Context key --- cmd/tfstated/post.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/tfstated/post.go b/cmd/tfstated/post.go index 718fed7..674eaba 100644 --- a/cmd/tfstated/post.go +++ b/cmd/tfstated/post.go @@ -25,7 +25,7 @@ func handlePost(db *database.DB) http.Handler { _ = errorResponse(w, http.StatusBadRequest, err) return } - account := r.Context().Value("account").(*model.Account) + account := r.Context().Value(model.AccountContextKey{}).(*model.Account) if idMismatch, err := db.SetState(r.URL.Path, account.Id, data, id); err != nil { if idMismatch { _ = errorResponse(w, http.StatusConflict, err) -- cgit v1.2.3