Skip to content

Commit

Permalink
Add key to auth field in load.json file
Browse files Browse the repository at this point in the history
Fixes #195
  • Loading branch information
schiavi-siae committed Jan 17, 2024
1 parent 7f50f33 commit a4b407e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions server/service/IndividualServicesService.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,8 @@ const EmbeddingCausesRequestForListOfApplicationsAtRo = async function (user, or
return new Promise(async function (resolve, reject) {
try {

let auth = "Basic YWRtaW46YWRtaW4=";
//let auth = "Basic YWRtaW46YWRtaW4=";
let auth;
let applicationNameAndHttpClient =
await resolveApplicationNameAndHttpClientLtpUuidFromForwardingName('EmbeddingCausesRequestForListOfApplicationsAtRo');

Expand Down Expand Up @@ -543,7 +544,8 @@ const EmbeddingCausesRequestForListOfApplicationsAtRo = async function (user, or
const EmbeddingCausesRequestForListOfDevicesAtMwdi = async function (user, originator, xCorrelator, traceIndicator, customerJourney) {
return new Promise(async function (resolve, reject) {
try {
let auth = "Basic YWRtaW46YWRtaW4=";
//let auth = "Basic YWRtaW46YWRtaW4="; //used as default value
let auth;
let applicationNameAndHttpClient =
await resolveApplicationNameAndHttpClientLtpUuidFromForwardingName('EmbeddingCausesRequestForListOfDevicesAtMwdi');

Expand Down Expand Up @@ -1080,7 +1082,8 @@ async function PromptForUpdatingMacTableFromDeviceCausesUuidOfMacFdBeingSearched
//STEP 2
async function PromptForUpdatingMacTableFromDeviceCausesMacTableBeingRetrievedFromDevice(mountName, user, originator, xCorrelator, traceIndicator, customerJourney) {
try {
let auth = "Basic YWRtaW46YWRtaW4=";
//let auth = "Basic YWRtaW46YWRtaW4=" //used as default value;
let auth;
let applicationNameAndHttpClient =
await resolveApplicationNameAndHttpClientLtpUuidFromForwardingName('PromptForUpdatingMacTableFromDeviceCausesMacTableBeingRetrievedFromDevice');

Expand Down

0 comments on commit a4b407e

Please sign in to comment.