We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a01c6 commit 57c1da8Copy full SHA for 57c1da8
lib/executor/src/executors/http.rs
@@ -186,7 +186,7 @@ impl SubgraphExecutor for HTTPSubgraphExecutor {
186
&http::Method::POST,
187
&self.endpoint,
188
&self.header_map,
189
- &execution_request.upstream_headers,
+ execution_request.upstream_headers,
190
&body,
191
&self.config.dedupe_fingerprint_headers,
192
);
@@ -195,7 +195,7 @@ impl SubgraphExecutor for HTTPSubgraphExecutor {
195
// Prevents any deadlocks.
196
let cell = self
197
.in_flight_requests
198
- .entry(fingerprint.clone())
+ .entry(fingerprint)
199
.or_default()
200
.value()
201
.clone();
0 commit comments