Skip to content

Commit

Permalink
Merge pull request #444 from bojand/set_metadata_accept_encoding
Browse files Browse the repository at this point in the history
fix: user metadata set to set grpc-accept-encoding to fix #441
  • Loading branch information
bojand committed May 30, 2024
2 parents e2a3e15 + ce5446b commit 5aee709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (w *Worker) makeRequest(tv TickValue) error {
}

if w.config.enableCompression {
reqMD.Append("grpc-accept-encoding", gzip.Name)
reqMD.Set("grpc-accept-encoding", gzip.Name)
}

ctx := context.Background()
Expand Down

0 comments on commit 5aee709

Please sign in to comment.