Skip to content

Commit

Permalink
fix: use metadata set to set grpc-accept-encoding to fix #441
Browse files Browse the repository at this point in the history
  • Loading branch information
bojand committed May 30, 2024
1 parent e2a3e15 commit ce5446b
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 ce5446b

Please sign in to comment.