Skip to content

Commit

Permalink
Update in Middleware auth process - base64 conversion removed (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhogayatakb authored Mar 28, 2023
1 parent f9be8f4 commit abc45f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/vendors/middleware.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Middleware implements ObservabilityVendor {
MW_TARGET: req.body.target,
},
Secret: {
MW_API_KEY: Buffer.from(req.body.apikey).toString("base64"),
MW_API_KEY: req.body.apikey,
},
};
};
Expand Down

0 comments on commit abc45f0

Please sign in to comment.