We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dbce9e commit 6072376Copy full SHA for 6072376
apps/backend/server/apis/v2/middlewares/fme.server.proxy.js
@@ -32,7 +32,7 @@ export default function fmeServerProxy(err, req, res, next) {
32
// We have to add an authorization header to the request
33
// There are 2 possibilities: with TOKEN or with USER/PASS.
34
const value = process.env.FME_SERVER_TOKEN
35
- ? `Authorization: fmetoken token=${process.env.FME_SERVER_TOKEN}`
+ ? `fmetoken token=${process.env.FME_SERVER_TOKEN}`
36
: `Basic ${Buffer.from(
37
`${process.env.FME_SERVER_USER}:${process.env.FME_SERVER_PASSWORD}`
38
).toString("base64")}`;
0 commit comments