We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b5f413 + 3bcc76a commit 51470d9Copy full SHA for 51470d9
1 file changed
proxies/live/apiproxy/resources/jsc/NrlAppId.SetRequestHeaders.js
@@ -1,9 +1,8 @@
1
(function () {
2
const nrlAppID = context.getVariable("app.nrl-app-id");
3
if (nrlAppID) {
4
- context.targetRequest.headers["NHSD-NRL-App-ID"] = nrlAppID;
5
- }
6
- else {
7
- context.targetRequest.headers["NHSD-NRL-App-ID"] = "NotProvided";
+ context.targetRequest.headers["X-Proxygen-App-NRL-App-ID"] = nrlAppID;
+ } else {
+ context.targetRequest.headers["X-Proxygen-App-NRL-App-ID"] = "NotProvided";
8
}
9
})();
0 commit comments