We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10b9990 commit 7cc718aCopy full SHA for 7cc718a
1 file changed
packages/flowtest-cli/graph/compute/requestnode.js
@@ -117,6 +117,12 @@ class requestNode extends Node {
117
}
118
119
120
+ if (this.nodeData.headers && this.nodeData.headers.length > 0) {
121
+ this.nodeData.headers.map((pair, index) => {
122
+ headers[pair.name] = pair.value;
123
+ });
124
+ }
125
+
126
const options = {
127
method: restMethod,
128
url: finalUrl,
0 commit comments