Skip to content

Commit

Permalink
Update handler/handler.go
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenACoffman authored Jul 12, 2024
1 parent 31fc29f commit 692df1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handler/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (a apqAdapter) Get(ctx context.Context, key string) (value string, ok bool)
return a.PersistedQueryCache.Get(ctx, key)
}

func (a apqAdapter) Add(ctx context.Context, key string, value string) {
func (a apqAdapter) Add(ctx context.Context, key, value string) {
a.PersistedQueryCache.Add(ctx, key, value)
}

Expand Down

0 comments on commit 692df1f

Please sign in to comment.